stumpalo 0.2.0

A fast, zero-dependency, memory efficient bump allocator with chunk reuse and scoped stack support
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 = "stumpalo"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, zero-dependency, memory efficient bump allocator with chunk reuse and scoped stack support"
homepage = "https://codeberg.org/414owen/stumpalo"
documentation = "https://docs.rs/stumpalo/latest/stumpalo/"
readme = "README.md"
keywords = [
    "arena",
    "bump",
    "stack",
    "allocator",
    "performance",
]
categories = ["memory-management"]
license = "BSD-3-Clause"
repository = "https://codeberg.org/414owen/stumpalo"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
std = []

[lib]
name = "stumpalo"
path = "src/lib.rs"

[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "oom_test"
path = "tests/oom_test.rs"

[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false

[dependencies]

[dev-dependencies.blink-alloc]
version = "0.4"

[dev-dependencies.bumpalo]
version = "3"

[dev-dependencies.libc]
version = "0.2"

[dev-dependencies.mimalloc]
version = "0.1"

[dev-dependencies.trybuild]
version = "1"

[build-dependencies.readme-rustdocifier]
version = "0.1.1"