[package] name = "rustc-arena-modified" version = "0.1.1" edition = "2021" categories = ["memory-management"] keywords = ["arena"] description = "rustc-arena ported to stable rust with additional features" repository = "https://github.com/Jakobeha/rustc-arena-modified" documentation = "https://docs.rs/rustc-arena-modified" # Benchmarks are in a separate workspace with criterion (see benches/README.md for more) exclude = ["benches"] license = "MIT/Apache-2.0" readme = "README.md" autobenches = false [features] slab = [] # Benchmarks are additional tests, we run them with the criterion bencher replaced by stubs [[test]] name = "typed-arena-benchmarks" path = "benches/typed_arena.rs" harness = true [dependencies] smallvec = "1.10.0" [dev-dependencies] rand = { version = "0.8.5", features = ["small_rng"] } once_cell = "1.18.0" typed-arena = "2.0.2"