aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 73c5212..1104bc4 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,9 @@
1# rhex 1# rhex
2
3Rust crate to decode and encode hexadecimal.
4
5##Examples
6```rust
7let hex_string = "1a2b3c";
8let data = rhex::decode_hex(&hex_string).unwrap();
9```