diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 18008a24135a2..1d82f4e0340fe 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -29,7 +29,7 @@ anyhow = "1.0.4" thiserror = "1.0" downcast-rs = "1.2.0" notify = { version = "=5.0.0-pre.11", optional = true } -parking_lot = "0.11.0" +parking_lot = "0.12.1" rand = "0.8.0" [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 13aa5a785866b..65804c6f02e1e 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -19,7 +19,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.6.0" } # other anyhow = "1.0.4" rodio = { version = "0.15", default-features = false } -parking_lot = "0.11.0" +parking_lot = "0.12.1" [target.'cfg(target_arch = "wasm32")'.dependencies] rodio = { version = "0.15", default-features = false, features = ["wasm-bindgen"] } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 86e379dfb2216..5a9e1bc70d834 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -27,7 +27,7 @@ downcast-rs = "1.2" serde = "1" [dev-dependencies] -parking_lot = "0.11" +parking_lot = "0.12" rand = "0.8" [[example]] diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index f437a31a88dd8..0a66a93bb9cb3 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -20,7 +20,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.6.0" } # other erased-serde = "0.3" downcast-rs = "1.2" -parking_lot = "0.11.0" +parking_lot = "0.12.1" thiserror = "1.0" serde = "1" smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 765d5b94e346e..83d90a67bb590 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -51,6 +51,6 @@ futures-lite = "1.4.0" anyhow = "1.0" hex = "0.4.2" hexasphere = "6.0.0" -parking_lot = "0.11.0" +parking_lot = "0.12.1" regex = "1.5" copyless = "0.1.5"