1#[cfg(feature = "mimalloc")] 2pub mod mimalloc { 3 use mimalloc::MiMalloc; 4 5 #[global_allocator] 6 static GLOBAL: MiMalloc = MiMalloc; 7}