[package]
edition = "2021"
rust-version = "1.88"
name = "malloc-bench-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable, 100% Rust, generic-over-GlobalAlloc multi-threaded allocator benchmark harness (larson + mstress workloads with cross-thread handoff). The pure-Rust answer to mimalloc-bench (which is C-only) — zero runtime dependencies, comparison crates like mimalloc/jemalloc remain dev-only at consumer's discretion."
homepage = "https://github.com/PHPCraftdream/sefer-alloc/tree/main/crates/malloc-bench"
documentation = "https://docs.rs/malloc-bench-rs"
readme = "README.md"
keywords = [
"benchmark",
"allocator",
"globalalloc",
"larson",
"mstress",
]
categories = [
"development-tools::profiling",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PHPCraftdream/sefer-alloc"
[lib]
name = "malloc_bench_rs"
path = "src/lib.rs"
[[example]]
name = "compare"
path = "examples/compare.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies]
[dev-dependencies.mimalloc]
version = "0.1"