summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8d9de66..6d94067 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -32,6 +32,13 @@ pub mod utils {
pub use data_struct::*;
}
+ // Feature `sha1_hash`
+ #[cfg(feature = "sha1_hash")]
+ pub mod sha1_hash {
+ extern crate sha1_hash;
+ pub use sha1_hash::*;
+ }
+
// Feature `tcp_connection`
#[cfg(feature = "tcp_connection")]
pub mod tcp_connection {