cranpose_core/collections.rs
1#[cfg(feature = "std-hash")]
2pub mod map {
3 pub use std::collections::hash_map::Entry;
4 pub use std::collections::{HashMap, HashSet};
5}
6
7#[cfg(not(feature = "std-hash"))]
8pub mod map {
9 pub use rustc_hash::{FxHashMap as HashMap, FxHashSet as HashSet};
10 pub use std::collections::hash_map::Entry;
11}