1 2 3 4 5 6 7 8 9 10 11 12
#![cfg_attr(feature = "nightly", feature(test))] #![deny(missing_docs)] // TODO: when https://git.io/JYTnW gets stabilized add the readme as module docs. //! mod cuckoo; mod errors; mod psi; pub mod utils; pub use crate::{errors::Error, psi::*};