[package]
edition = "2021"
rust-version = "1.58.0"
name = "vectree"
version = "0.4.1"
authors = ["Redglyph"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector-buffered tree collection with pre-/post-order, depth-first, mutable/immutable iterator"
homepage = "https://github.com/blueglyph/vectree"
documentation = "https://docs.rs/vectree"
readme = "README.md"
keywords = [
"tree",
"collection",
"depth-first",
]
categories = [
"data-structures",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/blueglyph/vectree"
[lib]
name = "vectree"
path = "src/lib.rs"
[dependencies]