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