indextree 4.9.1

Arena based tree structure by using indices instead of reference counted pointers
Documentation
# 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 = "2024"
rust-version = "1.85.0"
name = "indextree"
version = "4.9.1"
authors = ["Sascha Grunert <mail@saschagrunert.de>"]
build = false
autolib = 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",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/saschagrunert/indextree"

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

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

[[test]]
name = "serde"
path = "tests/serde.rs"

[dependencies.indextree-macros]
version = "0.1.3"
optional = true

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

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

[dev-dependencies.serde_json]
version = "1.0.143"