[package]
edition = "2024"
name = "smmalloc"
version = "7.6.3"
authors = ["Zooko <noemail@thanks.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "smalloc is a very simple but performant allocator"
homepage = "https://github.com/zooko/smalloc"
readme = "README.md"
keywords = [
"allocator",
"memory",
"malloc",
]
categories = ["memory-management"]
license = "MIT OR Apache-2.0 OR TGPPL-1.0"
repository = "https://github.com/zooko/smalloc"
[lib]
name = "smmalloc"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[dev-dependencies]
[target.'cfg(target_os = "linux")'.dependencies.rustix]
version = "1.0.7"
features = ["mm"]
[target.'cfg(target_os="windows")'.dependencies.windows-sys]
version = "0.61.2"
features = ["Win32_System_Memory"]
[target.'cfg(target_vendor="apple")'.dependencies.mach-sys]
version = "0.5"