//! Shared prelude for `no_std` / `std` compatibility.
//!
//! When the `std` feature is disabled, the crate uses `no_std` and
//! imports heap types from `alloc`. When `std` is enabled, the
//! standard prelude provides these types directly.
//!
//! Core modules should `use crate::prelude::*;` instead of importing
//! `Vec`, `String`, `format!`, `Box`, `ToString`, etc. individually.
pub use ;
pub use ;