-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (61 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
73 lines (61 loc) · 1.25 KB
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
65
66
67
68
69
70
71
72
[package]
name = "deeper"
version = "0.0.1"
authors = ["Arnaldur Bjarnason <aarnaldur@gmail.com>", "Jökull Reynisson <jokullmani12@gmail.com>"]
edition = "2018"
[profile.release]
opt-level = 2
incremental = true
lto = false
#lto = "thin"
debug = 1
[profile.dev]
opt-level = 2
incremental = true
lto = false
debug = 2
[profile.test]
opt-level = 2
debug = 2
[workspace]
members = [
"engine/physics",
"engine/entity_smith",
"engine/transforms",
"engine/graphics",
"engine/input",
"engine/application",
"engine/assman",
"engine/debug",
]
[dependencies]
# internal
physics = { path = "engine/physics" }
transforms = { path = "engine/transforms" }
entity_smith = { path = "engine/entity_smith" }
graphics = { path = "engine/graphics" }
input = { path = "engine/input" }
application = { path = "engine/application" }
assman = { path = "engine/assman" }
debug = { path = "engine/debug" }
# misc
itertools = "0.10.0"
rayon = "1.5.0"
futures = "0.3.13"
winit = "0.24.0"
ena = "0.14.0"
# math
cgmath = "0.18.0"
rand = "0.8.3"
# loader
ron = "0.6.4"
serde = { version = "1.0.123", features = ["derive"] }
# ECS
legion = "0.4"
crossbeam-channel = "0.5.0"
# WFC
image = "0.23.14"
apply = "0.3.0"
bit-set = "0.5.2"
wfc = "0.10.0"
wfc_image = "0.11.0"