highhash/
lib.rs

1//! High speed hashing algorithms.
2//! Algorithms translated into Rust from C++ source found here: https://github.com/rurban/smhasher
3#![warn(missing_docs)]
4
5pub mod city;
6pub mod murmur;
7
8pub use murmur::Murmur3Hasher32 as Murmur3Hasher;