35 releases

new 0.1.46 Apr 7, 2025
0.1.44 Mar 18, 2025
0.1.43 Jun 23, 2024
0.1.39 Sep 14, 2023
0.1.5 Jul 2, 2019

#9 in Memory management

Download history 72762/week @ 2024-12-23 79095/week @ 2024-12-30 127364/week @ 2025-01-06 135653/week @ 2025-01-13 128144/week @ 2025-01-20 130919/week @ 2025-01-27 156522/week @ 2025-02-03 144683/week @ 2025-02-10 161330/week @ 2025-02-17 183267/week @ 2025-02-24 180865/week @ 2025-03-03 195082/week @ 2025-03-10 201272/week @ 2025-03-17 199697/week @ 2025-03-24 200937/week @ 2025-03-31 203170/week @ 2025-04-07

816,283 downloads per month
Used in 322 crates (258 directly)

MIT license

605KB
10K SLoC

C 10K SLoC // 0.2% comments Rust 496 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