[package] name = "scoped-arena" version = "0.4.1" edition = "2018" authors = ["Zakarum "] license = "MIT OR Apache-2.0" documentation = "https://docs.rs/scoped-arena" homepage = "https://github.com/zakarumych/scoped-arena" repository = "https://github.com/zakarumych/scoped-arena" readme = "README.md" description = "Arena allocator with optional scopes" categories = ["memory-management", "rust-patterns", "no-std"] keywords = ["allocator", "alloc", "arena", "no-std"] [features] allocator_api = [] alloc = [] default = ["alloc"] [dev-dependencies] quickcheck = "1.0" criterion = "0.3.0" rand = "0.8" lazy_static = "1.0" bumpalo = { version = "3.7", features = ["allocator_api"] } [[bench]] name = "benches" path = "benches/bench.rs" harness = false required-features = ["allocator_api"]