diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-24 18:35:44 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-24 18:35:44 +0800 |
| commit | cb8f366ede5e0d90ec716b0d06cfd2cbc863faff (patch) | |
| tree | c767a898a9305861c35693995b0b5085155f8446 | |
| parent | f3b7620259682a5afc511556209e1fdd45c238de (diff) | |
Add hex_display feature
| -rw-r--r-- | src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 { |
