mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-08 20:09:54 +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};
|