7 releases

new 0.1.52 May 3, 2025
0.1.51 Apr 24, 2025
0.1.49 Mar 16, 2025

#109 in Memory management

Download history 117/week @ 2025-03-01 131/week @ 2025-03-08 3676/week @ 2025-03-15 2951/week @ 2025-03-22 2514/week @ 2025-03-29 2252/week @ 2025-04-05 2048/week @ 2025-04-12 3069/week @ 2025-04-19 2248/week @ 2025-04-26

10,283 downloads per month
Used in 3 crates

MIT license

615KB
11K SLoC

C 10K SLoC // 0.2% comments Rust 555 SLoC // 0.0% comments

mimalloc-safe

Forked from https://github.com/purpleprotocol/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_safe::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-safe = { version = "*", features = ["secure"] }

Dependencies