88 lines
1.6 KiB
TOML
88 lines
1.6 KiB
TOML
# 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 = "ego-tree"
|
|
version = "0.10.0"
|
|
authors = [
|
|
"June McEnroe <june@causal.agency>",
|
|
"Carlo Federico Vescovo <vescovocarlofederico@gmail.com>",
|
|
]
|
|
build = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Vec-backed ID-tree"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"tree",
|
|
"vec",
|
|
"id",
|
|
"index",
|
|
]
|
|
license = "ISC"
|
|
repository = "https://github.com/rust-scraper/ego-tree"
|
|
|
|
[lib]
|
|
name = "ego_tree"
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "simple_tree"
|
|
path = "examples/simple_tree.rs"
|
|
|
|
[[test]]
|
|
name = "iter"
|
|
path = "tests/iter.rs"
|
|
|
|
[[test]]
|
|
name = "macro"
|
|
path = "tests/macro.rs"
|
|
|
|
[[test]]
|
|
name = "node_mut"
|
|
path = "tests/node_mut.rs"
|
|
|
|
[[test]]
|
|
name = "node_ref"
|
|
path = "tests/node_ref.rs"
|
|
|
|
[[test]]
|
|
name = "serde"
|
|
path = "tests/serde.rs"
|
|
|
|
[[test]]
|
|
name = "sort"
|
|
path = "tests/sort.rs"
|
|
|
|
[[test]]
|
|
name = "subtree"
|
|
path = "tests/subtree.rs"
|
|
|
|
[[test]]
|
|
name = "tree"
|
|
path = "tests/tree.rs"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.209"
|
|
optional = true
|
|
|
|
[dev-dependencies.serde]
|
|
version = "1.0.209"
|
|
|
|
[dev-dependencies.serde_test]
|
|
version = "1.0.177"
|
|
|
|
[features]
|
|
serde = ["dep:serde"]
|