-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (42 loc) · 1.66 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
50
51
52
53
[package]
name = "fight_arena"
version = "0.4.2"
authors = ["Olf EPAIN <wabtey@disroot.org>", "Morgan Van Amerongen <vanamerongen.morgan@gmail.com>"]
repository = "https://github.com/Fabinistere/fight_arena"
license = "MIT OR Apache-2.0"
edition = "2021"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_winit", "render", "x11", "png", "wayland", "dynamic"]
bevy = { version = "0.11", features = ["dynamic_linking"] }
bevy_ecs = "0.11"
[target.'cfg(target_arch = "wasm32")'.dependencies]
bevy = "0.11"
bevy_ecs = "0.11"
wasm-bindgen = "0.2"
# a panic hook that will cause the messages to appear in the browser console
console_error_panic_hook = "0.1"
[dependencies]
# ----------- Common ----------
# bevy_kira_audio = { git = "https://github.com/NiklasEi/bevy_kira_audio.git" }
bevy_tweening = "0.8"
bevy_reflect = "0.11"
image = "0.23"
rand = "0.8.5"
# ----- Hitbox - Velocity -----
bevy_rapier2d = { version = "0.22", features = ["simd-stable", "debug-render-2d"] }
density-mesh-core = "1.5"
density-mesh-image = "1.5"
# ----------- Debug -----------
# until a clear release, we're tracking `main`
bevy-inspector-egui = { version = "0.18", git = "https://github.com/jakobhellermann/bevy-inspector-egui", rev = "a181bdf5c5c621d524d63ee89e22570e01e1b162" }
log = "0.4.17"
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
# for mac...
# incremental = false
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# for mac...
# incremental = false