numalloc 0.1.1

A blazing-fast, NUMA-aware memory allocator written in pure Rust
Documentation
[package]
name = "numalloc"
version = "0.1.1"
edition = "2024"
description = "A blazing-fast, NUMA-aware memory allocator written in pure Rust"
license = "MIT"
repository = "https://github.com/Mnwa/NUMAlloc-rs"
homepage = "https://github.com/Mnwa/NUMAlloc-rs"
documentation = "https://docs.rs/numalloc"
authors = ["Mikhail Panfilov <mikhail@panfilov.biz>"]
readme = "README.md"
keywords = ["allocator", "numa", "memory", "performance", "lock-free"]
categories = ["memory-management", "concurrency"]

[dependencies]
libc = "0.2"

[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
mimalloc = { version = "0.1", default-features = false }
tikv-jemallocator = "0.6"

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