mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
8 lines
182 B
Rust
8 lines
182 B
Rust
|
|
#[cfg(feature = "std")]
|
||
|
|
pub use std::collections::*;
|
||
|
|
|
||
|
|
#[cfg(not(feature = "std"))]
|
||
|
|
pub use alloc::collections::*;
|
||
|
|
#[cfg(not(feature = "std"))]
|
||
|
|
pub use hashbrown::{HashSet, HashMap};
|