2 releases
0.1.1 | Sep 1, 2024 |
---|---|
0.1.0 | Jun 4, 2023 |
#665 in Development tools
9KB
87 lines
#qdhex
A crate for creating simple hex dumps.
Usage
Add this to your Cargo.toml
:
[dependencies]
qdhex = "0.1"
Example
let data = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f];
println!("{}", qdhex::formatted_dump_string(0x2000, &data));
Output:
00002000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f ................
lib.rs
:
This crate provides functions to create human readable hex dumps of binary data.