//! Internal prelude for no_std compatibility.
//!
//! This module re-exports types that are needed throughout the crate,
//! sourcing them from either `std` or `alloc` depending on feature flags.
// When std is enabled, re-export from std
pub use ;
// When alloc is enabled (but not std), re-export from alloc
pub use ;