serai/common/std-shims/src/collections.rs

8 lines
182 B
Rust
Raw Normal View History

#[cfg(feature = "std")]
pub use std::collections::*;
#[cfg(not(feature = "std"))]
pub use alloc::collections::*;
#[cfg(not(feature = "std"))]
pub use hashbrown::{HashSet, HashMap};