-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (56 loc) · 1.48 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
63
64
[package]
name = "toxicblend"
version = "0.0.22"
authors = ["eadf <lacklustr@protonmail.com>"]
edition = "2021"
description = "gRPC based Blender-addons. WIP"
readme = "README.md"
repository = "https://github.com/eadf/toxicblend.rs"
license = "AGPL-3.0"
keywords = ["blender-addon", "centerline", "voronoi", "lindenmayer", "voxel"]
exclude = [
"img/*",
"idea/*",
".github/*",
]
[features]
# This is for debugging purposes, will place voxels at each chunk corner
display_chunks = []
# enables the saft mesher backend
saft = ["saft_cr", "macaw"]
[dependencies]
tonic = "~0.6"
prost = "~0.9"
ahash = "0.8"
tokio = { version = "~1.15", features = ["macros", "rt-multi-thread"] }
thiserror = "1.0"
linestring = "0.8.1"
centerline = "0.7.1"
vob = "3.0"
boostvoronoi = {version="0.11",features=["cgmath"]}
rayon = "1.8"
smallvec = "1.7"
cgmath = "~0.18"
itertools = "0.12"
logos = "0.13"
ilattice = { version="~0.1", default-features = false, features = ["glam"]}
fast-surface-nets = "~0.1"
bytemuck = "~1.7"
saft_cr = { package="saft", version="~0.27", optional = true, features = ["with_rayon"]}
# We import macaw to get at the glam version used by saft
macaw = { package="macaw", version="~0.15", optional = true}
[[bin]]
name = "toxicblend_server"
path = "src/server.rs"
[build-dependencies]
tonic-build = "~0.6"
version_check = "~0.9"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true
[badges]
maintenance = { status = "actively-developed" }