[package]
edition = "2024"
name = "hislab"
version = "0.2.0"
authors = ["Joshua"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance slab allocator with hierarchical bitmap for O(1) insert/remove operations"
documentation = "https://docs.rs/hislab"
readme = "README.md"
keywords = [
"slab",
"allocator",
"bitmap",
"simd",
"data-structure",
]
categories = [
"data-structures",
"memory-management",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JoshuaBOUCHAT/hislab"
[features]
default = []
rand = ["dep:rand"]
[lib]
name = "hislab"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
[dependencies.memmap2]
version = "0.9.10"
[dependencies.rand]
version = "0.8"
optional = true
[profile.release]
lto = true
codegen-units = 1