diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,6 @@ #![feature(backtrace)] +#[cfg(feature = "encryption")] mod cfb8; mod connection; mod reader; @@ -8,6 +9,7 @@ mod util; mod wrapper; mod writer; +#[cfg(feature = "encryption")] pub use cfb8::CipherError; pub use connection::CraftConnection; pub use reader::*; |