//! Facade module centralizing conditional imports.
//!
//! All other modules import from this facade rather than from `core`/`alloc`/`std`
//! directly. This keeps `#[cfg]` attributes out of the main logic.
pub use Duration;
pub use Box;
pub use String;
pub use Vec;