system-mimalloc 1.0.1

Use the system's shared mimalloc library as allocator
Documentation
1
2
3
4
5
6
//! Tell `cargo` to link `libmimalloc` to your program.

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    println!("cargo:rustc-link-lib=mimalloc");
}