1 2 3 4 5 6 7 8 9
// Feature 'avx2' currently requires unstable 'stdsimd' #![cfg_attr(all(feature = "avx2", target_arch = "x86_64"), feature(stdsimd))] #[rustfmt::skip] mod gxhash; mod hasher; pub use crate::gxhash::*; pub use crate::hasher::*;