1 2 3 4 5 6 7 8 9 10 11 12
#![cfg_attr(docsrs, feature(doc_cfg))] #[cfg(madsim)] mod sim; #[cfg(not(madsim))] #[path = "std/mod.rs"] mod std_; #[cfg(madsim)] pub use sim::*; #[cfg(not(madsim))] pub use std_::*;