1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

//#![feature(atomic_from_mut)]
#![cfg_attr(feature = "sip13", feature(hashmap_internals))]

pub mod utils;
pub mod stats;
pub mod seedable_hash;
pub use seedable_hash::{BuildSeededHasher, Seedable, BuildDefaultSeededHasher};

pub mod fmph;

pub use dyn_size_of::GetSize;