1//! Bindings for allocator_api that allow usage within both nightly and stable. 2 3#[cfg(feature = "nightly")] 4pub use alloc::alloc::*; 5#[cfg(not(feature = "nightly"))] 6pub use allocator_api2::alloc::*;