1//! Provides [`HashMap`] and [`HashSet`] from [`hashbrown`] with some customized defaults. 2//! 3//! Also provides the [`HashTable`] type, which is specific to [`hashbrown`]. 4 5pub use hash_map::HashMap; 6pub use hash_set::HashSet; 7pub use hash_table::HashTable; 8pub use hashbrown::Equivalent; 9 10pub mod hash_map; 11pub mod hash_set; 12pub mod hash_table; 13 14