Expose bincode completely
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -5,7 +5,7 @@ use aes_gcm::aead::{Aead, OsRng};
|
||||
use aes_gcm::{Aes256Gcm, Key, KeyInit, Nonce};
|
||||
use base64::engine::general_purpose::STANDARD as BASE64_STANDARD;
|
||||
use base64::Engine as _;
|
||||
pub use bincode::{Decode, Encode};
|
||||
use bincode::{Decode, Encode};
|
||||
use rand::Rng;
|
||||
|
||||
/// The lenght of the nonce used to initialize encryption
|
||||
|
@ -9,3 +9,6 @@ pub mod primitives;
|
||||
|
||||
#[cfg(feature = "crypto-wrapper")]
|
||||
pub mod crypto_wrapper;
|
||||
|
||||
#[cfg(feature = "crypto-wrapper")]
|
||||
pub use bincode;
|
Reference in New Issue
Block a user