-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (35 loc) · 932 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
[package]
name = "voxel-mapper"
version = "0.1.0"
authors = ["Duncan <[email protected]>"]
edition = "2018"
[profile.release]
lto = "thin"
[profile.dev]
opt-level = 2
[dependencies]
amethyst = { git = "https://github.com/amethyst/amethyst", tag = "v0.15.3" }
bincode = "1.3"
crossbeam = "0.7"
fnv = "1.0"
futures = "0.3"
itertools = "0.9"
lazy_static = "1.4"
log = "0.4"
mint = "0.5"
nalgebra = { version = "0.19", features = ["mint"] }
ncollide3d = "=0.21.0"
ordered-float = "1.1"
rayon = "1.3"
rendy = { version = "0.4.1", default-features = false, features = ["base"] }
serde = "1.0"
structopt = "0.3"
thread_profiler = { version = "0.3", optional = true }
[dependencies.building-blocks]
# version = "0.2"
git = "https://github.com/bonsairobo/building-blocks"
rev = "bb9634c"
# branch = "main"
features = ["mesh", "mint", "ncollide", "search"]
[features]
profiler = ["thread_profiler", "thread_profiler/thread_profiler"]