# 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 = "avl" version = "0.8.0" authors = ["Oliver Anhuth "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A map and a set implemented with an AVL tree." homepage = "https://github.com/oliver-anhuth/avl" documentation = "https://docs.rs/avl/0.8.0/avl/" readme = "README.md" categories = [ "algorithms", "data-structures", "no-std", ] license = "MIT" repository = "https://github.com/oliver-anhuth/avl" [lib] name = "avl" path = "src/lib.rs" [[example]] name = "traverse_level_order" path = "examples/traverse_level_order.rs" [[example]] name = "use" path = "examples/use.rs" [[bench]] name = "benchmark" path = "benches/benchmark.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.4" [dev-dependencies.rand] version = "0.8.5" [features] consistency_check = []