-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 749 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "easy-tree"
version = "0.4.0"
authors = ["Anton Suprunchuk <anton.suprunchuk@gmail.com>"]
edition = "2021"
description = "A simple and efficient tree structure library for Rust with recursive traversal"
homepage = "https://github.com/antouhou/easy-tree"
repository = "https://github.com/antouhou/easy-tree"
license = "MIT"
keywords = ["tree", "traversal", "data_structure", "hierarchical", "depth_first"]
categories = ["data-structures", "algorithms"]
readme = "README.md"
[dependencies]
# Add other dependencies here
rayon = { version = "1.10", optional = true }
[features]
default = []
[badges]
github-actions = { repository = "antouhou/easy-tree" }
# For documentation purpose
[package.metadata.docs.rs]
features = ["rayon"]