diff --git a/Cargo.lock b/Cargo.lock index 9e3e548..ce5fdb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1107,9 +1107,9 @@ dependencies = [ [[package]] name = "bevy_mod_picking" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4b815c364e05f887421ad2f14dee74bf4c3e60f34be1878d634cb28fadf15d2" +checksum = "c0eb0a57d5c1ea9738b6858bb6206454b2d99265983b36ca82e5a2a0b5c9e7a1" dependencies = [ "bevy", "bevy_mod_raycast", @@ -7653,7 +7653,7 @@ dependencies = [ "js-sys", "log", "naga", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "raw-window-handle 0.5.0", "smallvec", "static_assertions", @@ -7679,7 +7679,7 @@ dependencies = [ "fxhash", "log", "naga", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "profiling", "raw-window-handle 0.5.0", "smallvec", @@ -7715,7 +7715,7 @@ dependencies = [ "metal", "naga", "objc", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "profiling", "range-alloc", "raw-window-handle 0.5.0", diff --git a/libs/client_lib/Cargo.toml b/libs/client_lib/Cargo.toml index f8b0310..9458e2f 100644 --- a/libs/client_lib/Cargo.toml +++ b/libs/client_lib/Cargo.toml @@ -18,7 +18,7 @@ bevy = "0.9.1" bevy_egui = "0.18" bevy-inspector-egui = "0.15.0" bevy-inspector-egui-rapier = { version = "0.9", features = ["rapier2d"] } -bevy_mod_picking = "0.10" +bevy_mod_picking = "0.11" bevy_disturbulence = { git = "https://github.com/mvlabat/bevy_disturbulence.git", branch = "wip", features = ["client"] } bevy_rapier2d = { version = "0.19", features = ["wasm-bindgen"] } chrono = "0.4.23" diff --git a/libs/shared_lib/Cargo.toml b/libs/shared_lib/Cargo.toml index f535f87..31f9be8 100644 --- a/libs/shared_lib/Cargo.toml +++ b/libs/shared_lib/Cargo.toml @@ -14,7 +14,7 @@ profiler = ["puffin", "bevy/trace"] [dependencies] bevy = { version = "0.9.1", default-features = false } bevy_egui = { version = "0.18", optional = true } -bevy_mod_picking = { version = "0.10", optional = true } +bevy_mod_picking = { version = "0.11", optional = true } bevy_disturbulence = { git = "https://github.com/mvlabat/bevy_disturbulence.git", branch = "wip" } bevy_rapier2d = { version = "0.19", features = ["wasm-bindgen", "serde-serialize"] } rapier2d = "0.16.1"