//! A high-performance replacement for the standard library `HashMap`.
//!
//! The API of this crate mirrors that of the hash table implementation in
//! `std::collections`.
extern crate alloc;
extern crate byteorder;
extern crate scopeguard;
extern crate std as alloc;
pub use HashMap;
pub use HashSet;