# 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 = "indextree" version = "4.7.3" authors = ["Sascha Grunert "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Arena based tree structure by using indices instead of reference counted pointers" homepage = "https://github.com/saschagrunert/indextree" documentation = "https://docs.rs/indextree" readme = "README.md" keywords = [ "tree", "arena", "index", "indextree", "trie", ] categories = ["data-structures"] license = "MIT" repository = "https://github.com/saschagrunert/indextree" [lib] name = "indextree" path = "src/lib.rs" [[example]] name = "parallel_iteration" path = "examples/parallel_iteration.rs" required-features = ["par_iter"] [[example]] name = "simple" path = "examples/simple.rs" [[example]] name = "tree-macro" path = "examples/tree-macro.rs" required-features = ["macros"] [[test]] name = "debug_pretty_print" path = "tests/debug_pretty_print.rs" [[test]] name = "insert-error" path = "tests/insert-error.rs" [[test]] name = "lib" path = "tests/lib.rs" [[test]] name = "remove" path = "tests/remove.rs" [dependencies.indextree-macros] version = "0.1.2" optional = true [dependencies.rayon] version = "1.7.0" optional = true [dependencies.serde] version = "1.0.154" features = ["derive"] optional = true [features] default = [ "std", "macros", ] deser = ["serde"] macros = ["indextree-macros"] par_iter = ["rayon"] std = []