rustfs-mimalloc 0.5.2

High-performance mimalloc V3 global allocator for Rust
Documentation
[package]
name = "rustfs-mimalloc"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
documentation = "https://docs.rs/rustfs-mimalloc"
homepage.workspace = true
description = "High-performance mimalloc V3 global allocator for Rust"
keywords.workspace = true
categories.workspace = true
readme = "README.md"

[features]
default = []
# Security: heap allocation encryption
secure = ["rustfs-mimalloc-sys/secure"]
# Debug mode
debug = ["rustfs-mimalloc-sys/debug"]
debug_in_debug = ["rustfs-mimalloc-sys/debug_in_debug"]
# Override system malloc
override = ["rustfs-mimalloc-sys/override"]
# TLS model option
local_dynamic_tls = ["rustfs-mimalloc-sys/local_dynamic_tls"]
# Disable THP
no_thp = ["rustfs-mimalloc-sys/no_thp"]

[dependencies]
rustfs-mimalloc-sys = { workspace = true }

[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }

[[bench]]
name = "alloc"
harness = false