# 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 = "2018" name = "rb_tree" version = "0.5.0" authors = ["dbyr "] exclude = [".github*", ".gitignore"] description = "A Red Black Tree implementation in Rust" homepage = "https://github.com/dbyr/rb_tree" readme = "README.md" keywords = ["red", "tree", "set", "balanced", "priority"] categories = ["data-structures"] license = "MIT OR Apache-2.0" repository = "https://github.com/dbyr/rb_tree" [[bench]] name = "map_bench" harness = false [[bench]] name = "queue_bench" harness = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dev-dependencies.criterion] version = "^0.3.4" [dev-dependencies.fnv] version = "^1.0.7" [dev-dependencies.rand] version = "0.8.3" [dev-dependencies.rand_chacha] version = "0.3.0" [dev-dependencies.serde_json] version = "1.0" [features] default = ["set", "queue", "map"] map = ["set"] queue = [] set = []