mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
8 lines
162 B
Rust
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)
|
|
}
|