Best effort memory allocator for Rust
Selects suitable allocator depending on target OS and architecture.
use malloc_best_effort::BEMalloc; #[global_allocator] static GLOBAL: BEMalloc = BEMalloc::new();
std
#[global_allocator]