[package] name = "pui-arena" version = "0.5.1" authors = ["RustyYato "] edition = "2018" keywords = ["identifier", "unique", "arena"] categories = ["no-std", "data-structures"] license = "MIT/Apache-2.0" repository = "https://github.com/RustyYato/pui" description = "Generalized Arenas that can be used on `no_std`" [package.metadata.docs.rs] features = ['pui', 'slotmap', 'slab', 'scoped'] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ['pui'] pui = ['pui-vec/pui', 'pui-core'] slotmap = [] slab = [] scoped = ['pui'] [dependencies] pui-core = { path = '../core', version = '0.5.2', default-features = false, optional = true } pui-vec = { path = '../vec', version = '0.5.1', default-features = false } [dev-dependencies] criterion = "0.3" [[bench]] name = "sparse" path = "benchmark/sparse.rs" harness = false [[bench]] name = "dense" path = "benchmark/dense.rs" harness = false [[bench]] name = "hop" path = "benchmark/hop.rs" harness = false