summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-24 18:35:44 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-24 18:35:44 +0800
commitcb8f366ede5e0d90ec716b0d06cfd2cbc863faff (patch)
treec767a898a9305861c35693995b0b5085155f8446 /src/lib.rs
parentf3b7620259682a5afc511556209e1fdd45c238de (diff)
Add hex_display feature
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 306441b..7d05c3e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -48,6 +48,13 @@ pub mod utils {
pub use data_struct::*;
}
+ // Feature `hex_display`
+ #[cfg(feature = "hex_display")]
+ pub mod hex_display {
+ extern crate hex_display;
+ pub use hex_display::*;
+ }
+
// Feature `sha1_hash`
#[cfg(feature = "sha1_hash")]
pub mod sha1_hash {