ph_temp/lib.rs
1#![doc = include_str!("../README.md")]
2
3//#![feature(atomic_from_mut)]
4#![cfg_attr(feature = "sip13", feature(hashmap_internals))]
5
6pub mod utils;
7pub mod stats;
8pub mod fmph;
9pub mod seeds;
10pub mod phast;
11
12pub use seedable_hash::{self, BuildSeededHasher, Seedable, BuildDefaultSeededHasher};
13pub use dyn_size_of::GetSize;