6 个版本
0.1.5 | 2022 年 9 月 27 日 |
---|---|
0.1.4 | 2022 年 9 月 27 日 |
0.1.2 | 2022 年 8 月 25 日 |
126 在 #hex 中排名
69 每月下载量
在 7 个crate(6 个直接)中使用 7 crates (6 directly)
9KB
189 代码行,不包括注释
十六进制工具
一组用于处理十六进制的工具
安装
将包添加到 Cargo.toml 文件中
[dependencies]
hex-utilities = "0.1.5"
使用方法
use hex_utilities::{
get_text_for_hex,
}
// 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(&hex);
let text = match maybe_text {
Ok(text) => text.to_string(),
Err(_) => "wrong".to_string(),
};
assert_eq!(text, expected_text);
文档
可用方法和文档可在此处找到 这里
许可证
MIT © Joe Gesualdo
依赖项
~5KB