Expose bincode completely
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-29 08:28:25 +02:00
parent 279adff4f3
commit 8e2471c109
4 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -9,3 +9,6 @@ pub mod primitives;
#[cfg(feature = "crypto-wrapper")]
pub mod crypto_wrapper;
#[cfg(feature = "crypto-wrapper")]
pub use bincode;