-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.22 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
[package]
name = "generic-octree"
version = "0.5.2"
authors = [
"Thomas \"nwmqpa\" Nicollet <[email protected]>",
"Alexandre \"Afourcat\" Fourcat <[email protected]>",
]
edition = "2018"
description = "Simple generic implementation of a linear Octree"
license = "Apache-2.0"
readme = "README.md"
[profile.release]
debug = true
[dependencies]
hashbrown = { version = "0.7.2", features = ["serde", "rayon"] }
serde = { version = "1.0.*", features = ["derive"], optional = true }
dot_vox = { version = "2.0.0", optional = true}
bincode = { version = "1.2.1", optional = true}
serde_cbor = {version = "0.11.1", optional = true}
flate2 = { version = "1.0", features = ["zlib"], optional = true, default-features = false }
petgraph = {version = "0.5.0", optional = true }
color-rs = {version = "0.5.0", optional = true }
rayon = "1.3.0"
[features]
serialize = ["serde", "flate2"]
dot_tree = ["serialize", "bincode", "serde_cbor"]
render = ["color-rs", "petgraph"]
vox = ["dot_vox"]
[[example]]
name = "main"
required-features = ["color-rs"]
[[example]]
name = "optimal_convert"
required-features = ["vox", "dot_tree"]
[[example]]
name = "create_vertices"
required-features = ["render", "dot_tree"]