# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "btree-plus-store" version = "0.2.1" authors = [ "Jakob Hain ", "Timothée Haudebourg ", ] exclude = ["benches"] autobenches = false description = "B-trees backed by a slab/arena to reduce allocations and increase locality + copyable, immutable B-trees which must be manually dropped" documentation = "https://docs.rs/btree-plus-store" readme = "README.md" keywords = [ "btree", "map", "set", "arena", ] categories = [ "data-structures", "memory-management", ] license = "MIT/Apache-2.0" repository = "https://github.com/Jakobeha/btree-plus-store" resolver = "1" [package.metadata.docs.rs] features = ["copyable"] [[test]] name = "map_benchmarks" path = "benches/map.rs" harness = true [[test]] name = "set_benchmarks" path = "benches/set.rs" harness = true [dependencies.rustc-arena-modified] version = "0.1.1" features = ["slab"] [dependencies.smallvec] version = "1.10.0" [dev-dependencies.rand] version = "0.8.5" features = ["small_rng"] [features] copyable = [] default = []