blob: 6296cbdde9416e3a7e6bf9772f8867ac140c38f4 [file] [edit]
// Here we define wrappers for some of those types
#![allow(clippy::disallowed_types)]
pub use rustc_hash::FxHashMap as HashMap;
pub use rustc_hash::FxHashSet as HashSet;
pub type IndexMap<K, V> = indexmap::IndexMap<K, V, rustc_hash::FxBuildHasher>;
pub type IndexSet<V> = indexmap::IndexSet<V, rustc_hash::FxBuildHasher>;