-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (53 loc) · 1.29 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "charcoal"
version = "1.1.0"
authors = ["Kotauskas <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/kotauskas/charcoal.rs"
documentation = "https://docs.rs/charcoal"
description = "Implements tree data structures and interfaces to work with them."
categories = ["no-std", "data-structures", "algorithms"]
keywords = ["tree", "trees", "arena_tree"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayvec = { version = "0.5", default_features = false }
granite = { version = "1.0", features = ["arrayvec"] }
[features]
default = [
"std",
"unwind_safety",
"alloc",
"binary_tree",
"octree",
"quadtree",
"freeform_tree",
]
std = ["alloc"]
unwind_safety = ["std"]
alloc = []
binary_tree = []
octree = []
quadtree = []
freeform_tree = []
smallvec = ["granite/smallvec"]
slab = ["granite/slab"]
slotmap = ["granite/slotmap"]
union_optimizations = ["granite/union_optimizations"]
doc_cfg = []
[package.metadata.docs.rs]
features = [
"std",
"unwind_safety",
"alloc",
"binary_tree",
"octree",
"quadtree",
"freeform_tree",
"smallvec",
"slab",
"slotmap",
"union_optimizations",
"doc_cfg",
]