-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 1.01 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
[package]
name = "ludum_52_harvest"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
asefile = "0.3.5"
bevy = { version = "0.9.1", default-features = false, features = [
"bevy_asset",
"bevy_winit",
"render",
"png",
"x11",
] }
bevy_kira_audio = { version = "0.13" }
bevy_rapier2d = "0.19.0"
image = "0.24.5"
kira = { version = "0.7.1", default-features = false, features = ["ogg"] }
old_image = { package = "image", version = "0.23.14" }
once_cell = "1.17.0"
rand = "0.8.5"
[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "*"
console_error_panic_hook = "*"
web-sys = { version = "*", features = ["Document", "Element", "HtmlElement"] }
wasm-bindgen = "0.2.83"
# Enable a small amount of optimization in debug mode
[profile.dev]
# opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true