[package]
edition = "2024"
rust-version = "1.95"
name = "linalloc"
version = "1.0.0"
build = false
exclude = [
".github",
"rustfmt.toml",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Small, fixed-capacity arena allocators for single-threaded Rust programs.
"""
readme = "README.md"
keywords = [
"arena",
"bump",
"allocator",
"linear",
"memory",
]
categories = ["memory-management"]
license = "MIT"
repository = "https://github.com/qaijuang/linalloc"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
lazy = []
[lib]
name = "linalloc"
path = "src/lib.rs"