-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 886 Bytes
/
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
[package]
name = "threed2vox"
version = "0.1.0"
authors = ["Skye Im <skye.im@nyu.edu>"]
edition = "2018"
[profile.dev]
opt-level = 1
[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin14-clang"
ar = "x86_64-apple-darwin14-ar"
[[bin]]
name = "threed2vox"
path = "src/bin/main.rs"
[[bin]]
name = "tester"
path = "src/bin/tester.rs"
[[bin]]
name = "bench_teapot"
path = "src/bin/bench_teapot.rs"
required-features = ["sequential"]
[[bin]]
name = "bench_teapot_par"
path = "src/bin/bench_teapot.rs"
[dependencies]
anyhow = "1.0.32"
clap = "2.33.0"
collada = "0.13.0"
gltf = "0.15.2"
hematite-nbt = "0.5.0"
log = "0.4.11"
maplit = "1.0.2"
nalgebra = "^0.24.1"
num_cpus = "1.13.0"
parry3d = "^0.1.2"
rayon = "1.4.0"
serde = "1.0.115"
simplelog = "0.8.0"
stl_io = "0.6.0"
strsim = "0.10.0"
tobj = { version = "2.0.3", features=["log"] }
toml = "0.5.6"
[features]
sequential = []