This commit is contained in:
Pascal Engélibert 2023-08-02 08:35:09 +02:00
commit 7e2bdd5203
5 changed files with 1404 additions and 970 deletions

View file

@ -6,21 +6,21 @@ license = "AGPL-3.0-only"
edition = "2021"
[dependencies]
bevy = { version = "0.8.1", default-features = false, features = ["bevy_asset", "bevy_audio", "bevy_gilrs", "bevy_winit", "render", "png", "vorbis", "x11"] }
bevy_common_assets = { version = "0.3.0", features = ["json"] }
bevy_rapier2d = "0.16.2"
bevy = { version = "0.11.0", default-features = false, features = ["bevy_asset", "bevy_audio", "bevy_gilrs", "bevy_winit", "png", "vorbis", "x11"] }
bevy_common_assets = { version = "0.7.0", features = ["json"] }
bevy_rapier2d = "0.22.0"
#crossbeam-channel = "0.5.6"
rand = "0.8.5"
rand_distr = "0.4.3"
rapier2d = "0.14.0"
serde = { version = "1.0.144", features = ["derive"] }
rapier2d = "0.17.2"
serde = { version = "1.0.180", features = ["derive"] }
[target."cfg(not(target_arch = \"wasm32\"))".dependencies]
#bevy-inspector-egui = "0.12.1"
bevy_mod_picking = "0.9.0"
bevy_mod_picking = "0.14.0"
# cpal = "0.14.0"
# hexodsp = { git = "https://github.com/WeirdConstructor/HexoDSP", default-features = false }
serde_json = "1.0.85"
serde_json = "1.0.104"
#ticktock = "0.8.0"
[target."cfg(target_arch = \"wasm32\")".dependencies]
@ -30,4 +30,5 @@ serde_json = "1.0.85"
opt-level = 3
[patch.crates-io]
wgpu = { git = "https://github.com/mockersf/wgpu/", branch = "unconditional-clear-workaround" }
#wgpu = { git = "https://github.com/mockersf/wgpu/", branch = "unconditional-clear-workaround" }
bevy_mod_picking = { git = "https://github.com/bardt/bevy_mod_picking/", branch = "bevy_0.11" }