A crate for creating simple hex dumps.
Add this to your `Cargo.toml`:
```toml
[dependencies]
qdhex = "0.1"
```
```rust
let data = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
println!("{}", qdhex::formatted_dump_string(0x2000, &data));
```
Output:
```text
00002000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f ................
```