hislab 0.2.0

A high-performance slab allocator with hierarchical bitmap for O(1) insert/remove operations
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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