[package]
edition = "2021"
name = "easy-tree"
version = "0.3.0"
authors = ["Anton Suprunchuk <anton.suprunchuk@gmail.com>"]
build = false
autolib = 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"]
[badges.github-actions]
repository = "antouhou/easy-tree"
[features]
default = []
[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