36 releases

new 0.1.38 May 20, 2024
0.1.35 Sep 14, 2023
0.1.33 Apr 25, 2023
0.1.30 Jan 7, 2023
0.1.4 Jul 2, 2019

#156 in Memory management

Download history 57455/week @ 2024-01-31 60208/week @ 2024-02-07 60731/week @ 2024-02-14 61951/week @ 2024-02-21 70256/week @ 2024-02-28 65520/week @ 2024-03-06 68789/week @ 2024-03-13 69988/week @ 2024-03-20 66916/week @ 2024-03-27 70520/week @ 2024-04-03 74669/week @ 2024-04-10 78173/week @ 2024-04-17 85393/week @ 2024-04-24 83864/week @ 2024-05-01 77587/week @ 2024-05-08 63849/week @ 2024-05-15

326,292 downloads per month
Used in 198 crates (8 directly)

MIT license

535KB
9K SLoC

C 9K SLoC // 0.2% comments Rust 376 SLoC // 0.0% comments

Mimalloc Rust

Latest Version Documentation

A drop-in global allocator wrapper around the mimalloc allocator. Mimalloc is a general purpose, performance oriented allocator built by Microsoft.

Usage

use mimalloc::MiMalloc;

#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;

Requirements

A C compiler is required for building mimalloc with cargo.

Usage with secure mode

Using secure mode adds guard pages, randomized allocation, encrypted free lists, etc. The performance penalty is usually around 10% according to mimalloc own benchmarks.

To enable secure mode, put in Cargo.toml:

[dependencies]
mimalloc = { version = "*", features = ["secure"] }

Dependencies