From cb8f366ede5e0d90ec716b0d06cfd2cbc863faff Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 24 Feb 2026 18:35:44 +0800 Subject: Add hex_display feature --- src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) 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 { -- cgit