# 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 = "easy-tree" version = "0.1.3" authors = ["Anton Suprunchuk "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple and efficient tree structure library for Rust with recursive traversal" homepage = "https://github.com/antouhou/easy-tree" readme = "README.md" keywords = [ "tree", "traversal", "data_structure", "hierarchical", "depth_first", ] categories = [ "data-structures", "algorithms", ] license = "MIT" repository = "https://github.com/antouhou/easy-tree" [package.metadata.docs.rs] features = ["rayon"] [lib] name = "easy_tree" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" [[example]] name = "parallel" path = "examples/parallel.rs" [[example]] name = "traversal" path = "examples/traversal.rs" [dependencies.rayon] version = "1.10" optional = true [features] default = [] [badges.github-actions] repository = "antouhou/easy-tree"