chibihash 0.6.0

Rust implementation of the ChibiHash hash function
Documentation
1
2
3
4
5
6
7
8
9
#![cfg_attr(not(feature = "std"), no_std)]

// Default version is `v1` to ensure backwards compatibility
pub use v1::{chibi_hash64, ChibiHasher, StreamingChibiHasher};
#[cfg(any(feature = "std", feature = "hashbrown"))]
pub use v1::{ChibiHashMap, ChibiHashSet};

pub mod v1;
pub mod v2;