wyhash_final4/lib.rs
1//
2// The MIT License
3//
4// Copyright 2024 by LAN Xingcan. All Rights Reserved.
5//
6// Permission is hereby granted, free of charge, to any person obtaining a copy
7// of this software and associated documentation files (the "Software"), to deal
8// in the Software without restriction, including without limitation the rights
9// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10// copies of the Software, and to permit persons to whom the Software is
11// furnished to do so, subject to the following conditions:
12//
13// The above copyright notice and this permission notice shall be included in all
14// copies or substantial portions of the Software.
15//
16// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22// SOFTWARE.
23//
24
25//!
26//! This crate provides a pure rust implementation of wyhash_final4,
27//! which is an extremely fast hash function that can be implemented
28//! without any machine-specific instructions.
29//!
30//! The wyhash_final4 is the latest version of wyhash, which is incompatible
31//! with previous versions, but resolves the issue of bad seeds that found
32//! in previous versions.
33//!
34
35pub mod generics;
36mod util;
37
38#[cfg(feature = "wyhash32")]
39pub mod wyhash32;
40
41#[cfg(feature = "wyhash32")]
42pub use wyhash32::*;
43
44#[cfg(feature = "wyhash32condom")]
45pub mod wyhash32condom;
46
47#[cfg(feature = "wyhash32condom")]
48pub use wyhash32condom::*;
49
50#[cfg(feature = "wyhash64")]
51pub mod wyhash64;
52
53#[cfg(feature = "wyhash64")]
54pub use wyhash64::*;
55
56#[cfg(feature = "wyhash64condom")]
57pub mod wyhash64condom;
58
59#[cfg(feature = "wyhash64condom")]
60pub use wyhash64condom::*;