-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (38 loc) · 863 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
[package]
name = "war-sheep"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy-inspector-egui = "0.12"
bevy_simple_stat_bars = {git = "https://github.com/ickshonpe/bevy_simple_stat_bars", branch="main"}
bevy_kira_audio = { version = "0.11.0", features = ["mp3"] }
iyes_loopless = "0.7"
rand = "0.8"
[dependencies.bevy]
version = "0.8"
default-features = false
# These are the remaining default features other than `bevy_audio` and `vorbis`
features = [
"render",
"animation",
"bevy_asset",
"bevy_scene",
"bevy_winit",
"bevy_gilrs",
"png",
"hdr",
"filesystem_watcher",
"x11"
]
[features]
dev = [
"bevy/dynamic",
]
## Uncomment if game becomes too slow in debug mode ##
#
[profile.dev]
opt-level = 1
#
[profile.dev.package."*"]
opt-level = 3