diff --git a/api/src/crypto/b64.rs b/api/src/crypto/b64.rs index 121ede8..484041a 100644 --- a/api/src/crypto/b64.rs +++ b/api/src/crypto/b64.rs @@ -6,7 +6,13 @@ extern crate base64; -pub use self::base64::{Config, DecodeError}; +pub use self::base64::{ + CharacterSet, + Config, + DecodeError, + LineEnding, + LineWrap, +}; /// Encode the given byte slice using base64, /// in an URL-safe manner without padding.