-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1.02 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
[package]
name = "leiden"
version = "0.0.0"
edition = "2021"
license-file = "LICENSE.md"
[features]
dev = []
exit = []
rumble = []
sdl = ["sdl2"]
[dependencies]
bevy = { version = "0.14.2", features = ["wav", "mp3"] }
bevy-persistent = { version = "0.6.0", features = ["bincode"] }
bevy_prng = { version = "0.7.1", features = ["wyrand"] }
bevy_rand = { version = "0.7.1", features = ["wyrand"] }
bevy_ui = { version = "0.14.0" }
rand_core = "0.6.4"
wyrand = "0.2.1"
dirs = "5.0.1"
serde = "1.0.210"
bevy_window = "0.14.1"
log = { version = "0.4.22", features = ["max_level_debug", "release_max_level_warn"] }
sdl2 = { version = "0.37.0", features = ["static-link", "bundled", "use-bindgen"], optional = true }
[dev-dependencies]
bevy = { version = "0.14.2", features = ["dynamic_linking", "bevy_dev_tools"] }
[profile.dev]
opt-level = 0
debug = true
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
codegen-units = 1
lto = "thin"
[profile.wasm-release]
inherits = "release"
opt-level = "s"
strip = "debuginfo"