1#![allow(unused_imports)]
3
4pub(crate) mod prelude {
6 pub use alloc::{
7 borrow::ToOwned,
8 boxed::Box,
9 string::{String, ToString},
10 vec::Vec,
11 };
12
13 pub use std::eprintln;
15}
16
17#[cfg(feature = "hashbrown")]
18pub use hashbrown::{HashMap, HashSet};
19
20#[cfg(all(not(feature = "hashbrown"), wip_feature_std))]
21pub use std::collections::{HashMap, HashSet};
22
23#[cfg(all(not(feature = "hashbrown"), not(wip_feature_std)))]
24compile_error!("Please enable at least one of the following features: hashbrown, std");