1#[cfg(all(feature = "alloc", not(feature = "std")))] 2pub use extern_alloc::collections::*; 3#[cfg(all(feature = "alloc", not(feature = "std")))] 4pub use hashbrown::{HashSet, HashMap}; 5 6#[cfg(feature = "std")] 7pub use std::collections::*;