//! CPU memory management module
//!
//! This module contains all CPU-side allocation functionality.
//! Re-exports all existing modules to maintain backward compatibility.
// Re-exports of deprecated types are intentional
// Note: Feature-gated modules (rapier, bevy, debug, tokio) are re-exported at crate root
// to avoid duplicate paths and confusion
// Re-export all public API items at module level for convenience
pub use crateSmartAlloc;
pub use crateAllocConfig;
pub use crate;
pub use crateAllocStats;
pub use crate;
pub use crate;
pub use cratePoolBox;