//! JenkHash - A collection of hash functions designed by Bob Jenkins.
//!
//! This crate provides implementations of several hash algorithms created by Bob Jenkins,
//! including Lookup2, Lookup3, SpookyHash, and the one-at-a-time hash. These hash functions
//! are designed for use in hash tables and other data structures requiring fast, well-distributed
//! hash values.
//!
//! All hash implementations in this crate conform to the [`digest`] crate traits, allowing
//! them to be used interchangeably with the standard digest API.
pub use Lookup3;
pub use OneAtATime;
pub use Spooky;