3个不稳定版本
0.2.1 | 2020年5月14日 |
---|---|
0.2.0 | 2020年5月14日 |
0.1.0 | 2020年5月12日 |
1139 在 开发工具 中
每月下载 904 次
21KB
395 行
hash-ids
一个快速、无依赖的 hashids 实现。
用法
fn main() {
let hash_ids = hash_ids::HashIds::builder()
.with_salt("Arbitrary string")
.finish();
assert_eq!("neHrCa", hash_ids.encode(&[1, 2, 3]));
assert_eq!(vec![1, 2, 3], hash_ids.decode("neHrCa"));
}
lib.rs
:
hash-ids
一个快速、无依赖的 hashids 实现。
用法
fn main() {
let hash_ids = hash_ids::HashIds::builder()
.with_salt("Arbitrary string")
.finish();
assert_eq!("neHrCa", hash_ids.encode(&[1, 2, 3]));
assert_eq!(vec![1, 2, 3], hash_ids.decode("neHrCa"));
}