bump-scope 0.9.1

A fast bump allocator that supports allocation scopes / checkpoints. Aka an arena for values of arbitrary types.
Documentation
[[bench]]
harness = false
name = "benches"
path = "benches/benches.rs"

[dependencies.allocator-api2]
default-features = false
version = "0.2.16"

[dependencies.serde]
optional = true
version = "1.0.197"

[dependencies.sptr]
version = "0.3.2"

[dependencies.zerocopy]
default-features = false
optional = true
version = "0.7.34"

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

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[dev-dependencies.document-features]
version = "0.2.8"

[dev-dependencies.expect-test]
version = "1.4.1"

[dev-dependencies.rayon]
version = "1.10.0"

[dev-dependencies.serde_json]
version = "1.0.115"

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

[features]
alloc = ["allocator-api2/alloc"]
default = ["std"]
nightly-allocator-api = ["allocator-api2/nightly"]
nightly-coerce-unsized = []
nightly-const-refs-to-static = []
nightly-exact-size-is-empty = []
nightly-trusted-len = []
serde = ["dep:serde"]
std = ["allocator-api2/std", "alloc"]
zerocopy = ["dep:zerocopy"]

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

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(no_global_oom_handling)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["memory-management", "rust-patterns", "no-std"]
description = "A fast bump allocator that supports allocation scopes / checkpoints. Aka an arena for values of arbitrary types."
documentation = "https://docs.rs/bump-scope"
edition = "2021"
exclude = ["*.nu", "justfile", "tests", ".vscode", ".github"]
keywords = ["allocator", "arena", "no-std", "bump", "allocation"]
license = "MIT OR Apache-2.0"
name = "bump-scope"
readme = "README.md"
repository = "https://github.com/bluurryy/bump-scope"
rust-version = "1.64.0"
version = "0.9.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]

[package.metadata.release]
allow-branch = ["main"]
pre-release-commit-message = "release: version {{version}}"
pre-release-hook = ["just", "all"]

[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
replace = "{{version}} ({{date}})"
search = "Unreleased"