#hex #slice #byte-slice

no-std hex-display

Display impl for byte slices which provides a hexdump

3 unstable releases

0.3.0 Feb 1, 2023
0.2.0 Feb 1, 2023
0.1.1 Nov 9, 2022
0.1.0 Oct 24, 2022

#2844 in Rust patterns

Download history 8774/week @ 2024-10-01 9089/week @ 2024-10-08 7606/week @ 2024-10-15 6175/week @ 2024-10-22 7643/week @ 2024-10-29 4590/week @ 2024-11-05 5871/week @ 2024-11-12 2819/week @ 2024-11-19 6523/week @ 2024-11-26 3588/week @ 2024-12-03 5216/week @ 2024-12-10 4159/week @ 2024-12-17 5110/week @ 2024-12-24 7099/week @ 2024-12-31 6736/week @ 2025-01-07 5857/week @ 2025-01-14

25,355 downloads per month

MIT/Apache

6KB
83 lines

hex-display

crates.io

An implementation of Display on a wrapper for &[u8] which provides a hexdump (see [Hex] and HexDisplayExt). This crate also works in no_std environments.

If std is present, it can also convert to a hexdump as a string.

Example usage

use hex_display::HexDisplayExt;

assert_eq!(
    format!("{}", [0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef].hex()),
    "0123456789abcdef"
);
#[cfg(feature = "std")]
assert_eq!(
    [0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef].hex_string(),
    "0123456789abcdef"
);

No runtime deps

Features