-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 918 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 = "ld46"
version = "1.0.3"
authors = ["Noah Rosenzweig <rosenzweig.noah@gmail.com>"]
edition = "2018"
[dependencies]
rand = "0.7.3"
ron = "0.5.1"
serde_json = "1.0.51"
[dependencies.deathframe]
version = "*"
# path = "../deathframe"
git = "/~https://github.com/Noah2610/deathframe"
branch = "develop-ld46"
features = [
"animation",
"audio",
"physics",
"vulkan",
]
[dependencies.climer]
version = "0.6.0"
default-features = false
features = ["serialize"]
[dependencies.serde]
version = "1.0.104"
features = ["derive"]
[features]
default = []
debug = ["deathframe/debug"]
[profile.dev]
opt-level = 2
debug = true
debug-assertions = true
codegen-units = 8
incremental = true
overflow-checks = true
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = true
overflow-checks = false