Hex Utilities
A collection of utilities for working with hexadecimals
Install
Add package to Cargo.toml file
hex-utilities = "0.1.5"
Usage:
use
// Convert hext to text
// Should work similiar to this http://www.unit-conversion.info/texttools/hexadecimal
let hex = "30784e6f6e63652077617320666f756e646564".to_string;
let expected_text = "0xNonce was founded".to_string;
let maybe_text = get_text_for_hex;
let text = match maybe_text ;
assert_eq!;
Documentation
Available methods and documentation can be found here
License
MIT © Joe Gesualdo