-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
46 lines (42 loc) · 997 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
[package]
name = "noxfutura"
version = "0.2.0"
authors = ["Herbert Wolverson <herberticus@gmail.com>"]
edition = "2018"
[dependencies]
bengine = { path = "bengine/" }
nox_raws = { path = "nox_raws/" }
nox_spatial = { path = "nox_spatial/" }
nox_utils = { path = "nox_utils/" }
nox_planet = { path = "nox_planet/" }
nox_components = { path = "nox_components/" }
lazy_static = "1.4.0"
parking_lot = "0.12"
serde = { version = "1.0.115" }
ron = "0.6.1"
flate2 = "1.0.17"
byteorder = "1.3.4"
bracket-color = { version = "0.8.1", features = ["rex", "serde"] }
smallvec = "1.5.0"
legion = { version = "0.3.1", features = [ "serialize" ] }
bincode = "1.3.1"
miniz_oxide = "0.4.1"
bytemuck = "1.4.0"
rayon = "1.5.0"
failure = "0.1.8"
image = "0.23.9"
tobj = "2.0.2"
[profile.dev]
opt-level = 1
[profile.release]
#lto = "thin"
#debug = true # Disable when not profiling
[workspace]
members = [
"bengine",
"nox_raws",
"nox_spatial",
"nox_utils",
"nox_planet",
"nox_components"
]