aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 9e31828b7740e5012cfac21f2c0d7d82b50da101 (plain)
1
2
3
4
5
6
7
8
9
# rhex

Rust crate to decode and encode hexadecimal.

## Examples
```rust
let hex_string = "1a2b3c";
let data = rhex::decode_hex(&hex_string).unwrap();
```