//! Module for hashing utilities. //! //! Named hash_utils to prevent clashing with the core::hash module. /// HashMap using a fast, non-cryptographic hash algorithm. pub type FastHashMap = hashbrown::HashMap>; /// HashSet using a fast, non-cryptographic hash algorithm. pub type FastHashSet = hashbrown::HashSet>; /// IndexMap using a fast, non-cryptographic hash algorithm. pub type FastIndexMap = indexmap::IndexMap>;