1#![allow(missing_docs)] 2 3#[cfg(feature = "allocation-tracing")] 4pub mod allocations; 5 6pub const fn is_allocation_tracking_enabled() -> bool { 7 cfg!(feature = "allocation-tracing") 8}