Files
rustfs/reader/src/lib.rs
T
2024-11-02 00:21:10 +08:00

8 lines
162 B
Rust

pub mod error;
pub mod hasher;
pub mod reader;
pub fn hex(data: impl AsRef<[u8]>) -> String {
hex_simd::encode_to_string(data, hex_simd::AsciiCase::Lower)
}