indextree 4.7.3

Arena based tree structure by using indices instead of reference counted pointers
Documentation
[dependencies.indextree-macros]
optional = true
version = "0.1.2"

[dependencies.rayon]
optional = true
version = "1.7.0"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.154"

[[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"]

[features]
default = ["std", "macros"]
deser = ["serde"]
macros = ["indextree-macros"]
par_iter = ["rayon"]
std = []

[lib]
name = "indextree"
path = "src/lib.rs"

[package]
authors = ["Sascha Grunert <mail@saschagruenrt.de>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures"]
description = "Arena based tree structure by using indices instead of reference counted pointers"
documentation = "https://docs.rs/indextree"
edition = "2021"
homepage = "https://github.com/saschagrunert/indextree"
keywords = ["tree", "arena", "index", "indextree", "trie"]
license = "MIT"
name = "indextree"
readme = "README.md"
repository = "https://github.com/saschagrunert/indextree"
version = "4.7.3"

[[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"