system-mimalloc 1.0.1

Use the system's shared mimalloc library as allocator
Documentation
1
2
3
4
5
6
7
//! A simple program that uses `mimalloc` as its allocator.

system_mimalloc::use_mimalloc!();

fn main() {
    println!("{}", "Hello, world!".to_owned());
}