osom_lib_hash/hashers/
mod.rs

1//! This module contains and implements various hashing functions
2//! as [`Hasher`][core::hash::Hasher] implementations.
3
4mod fnv1a;
5pub use fnv1a::*;