-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (26 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
[package]
name = "grandstand-gauntlet"
version = "0.2.0"
authors = ["Olf EPAIN aka Wabtey <wabtey@disroot.org>", "Morgan Van Amerongen <vanamerongen.morgan@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bevy = { version = "0.9", features = ["dynamic"] }
bevy_ecs = "0.9"
[target.'cfg(target_arch = "wasm32")'.dependencies]
bevy = "0.9"
bevy_ecs = "0.9"
wasm-bindgen = "0.2"
[dependencies]
# ----- Hitbox - Velocity -----
bevy_rapier2d = { version = "0.20.0", features = ["simd-stable", "debug-render-2d"] }
# ----- Map - Background ------
bevy-parallax = "0.3"
# ----------- Debug -----------
bevy-inspector-egui = "0.15"
image = "0.24"
rand = "0.8"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1