//! wyhash is a fast non-cryptographic hash by Wang Yi.
//!
//! This is an implementation of the [original algorithm][1] in Rust.
//! The generated hashes are equal (see tests).
//!
//! [1]: https://github.com/wangyi-fudan/wyhash
//!
pub use wyhash;
pub use WyHash;