1#![no_std] 2#[cfg(feature = "alloc")] 3extern crate alloc; 4 5#[cfg(feature = "alloc")] 6pub mod heap; 7pub mod heapless; 8 9pub use heapless::*;