-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.39 KB
/
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
[package]
name = "ld44-stabman"
version = "1.0.3"
authors = ["Noah Rosenzweig <rosenzweig.noah@gmail.com>"]
edition = "2018"
description = "Our Ludum Dare 44 Game Jam Entry"
[dependencies]
amethyst = { version = "0.10.0", features = [] }
bitflags = "=1.0.4" # https://github.com/rust-lang/rust/issues/59134#issuecomment-489430178
json = "0.11.13"
regex = "1.1.5"
ron = "0.4.2"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
backtrace = { version = "0.3", optional = true }
base64 = { version = "0.10.1", optional = true }
chrono = { version = "0.4.8", optional = true }
deathframe = "0.1.4"
climer = { version = "0.4.0", features = ["serialize"] }
[features]
controller = ["amethyst/sdl_controller"]
debug = ["chrono", "backtrace"]
encrypt_savefile = ["base64"]
nightly = ["amethyst/nightly"]
[replace]
"lewton:0.9.4" = { git = "https://github.com/Noah2610/lewton", branch = "custom-0.9.3" } # cross-compilation to windows doesn't work with lewton 0.9.4
[profile.dev]
opt-level = 2
debug = true
lto = false
debug-assertions = true
codegen-units = 16
incremental = true
overflow-checks = true
[profile.release]
opt-level = 3
debug = false
lto = false
debug-assertions = false
codegen-units = 1
incremental = true
overflow-checks = false