std_shims/
collections.rs

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