//! 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 implement the [`Hasher`](hash::Hasher) trait,
//! providing a unified API for incremental hashing operations.
extern crate alloc;
pub
pub use Hasher;
pub use Lookup3;
pub use OneAtATime;
pub use Spooky;
const DEFAULT_TEST_STRING: & = b"The quick brown fox jumps over the lazy dog";