2 个稳定版本
1.1.0 | 2020年12月29日 |
---|---|
1.0.0 | 2020年12月29日 |
#1173 在 文件系统
每月 23 次下载
用于 video_amogusifier
7KB
86 行
filehash-rs
一个小型(3kb)、快速的用Rust编写的文件散列库。
使用方法
请参阅 examples
目录中的示例用法。
注意
- 生成的哈希值可能因环境而异
依赖项
该包依赖于Rust标准库,可能不适合将 no-std
作为重要考虑的应用程序。
use std::{
collections::hash_map::DefaultHasher,
fs::File,
hash::{Hash, Hasher},
io::{Error, Read},
path::Path,
};
依赖项
~750KB