[package]
edition = "2024"
rust-version = "1.92.0"
name = "adze-stack-pool-core"
version = "0.1.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Thread-local and reusable stack pool utilities for parser workloads."
homepage = "https://github.com/EffortlessMetrics/adze"
documentation = "https://docs.rs/adze-stack-pool-core"
readme = "README.md"
keywords = [
"stack",
"pool",
"memory",
"parser",
"reuse",
]
categories = [
"data-structures",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/adze"
resolver = "2"
[features]
default = []
strict_api = []
strict_docs = []
[lib]
name = "adze_stack_pool_core"
path = "src/lib.rs"
[[test]]
name = "bdd_stack_pool"
path = "tests/bdd_stack_pool.rs"
[[test]]
name = "comprehensive_stack_pool"
path = "tests/comprehensive_stack_pool.rs"
[[test]]
name = "contract_lock"
path = "tests/contract_lock.rs"
[[test]]
name = "integration_stack_pool"
path = "tests/integration_stack_pool.rs"
[[test]]
name = "pool_integration_tests"
path = "tests/pool_integration_tests.rs"
[[test]]
name = "property_stack_pool"
path = "tests/property_stack_pool.rs"
[[bench]]
name = "stack_pool_bench"
path = "benches/stack_pool_bench.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.4"