diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 77baf32dc3..e2d025dfee 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -22,7 +22,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.13.0" } bevy_utils = { path = "../bevy_utils", version = "0.13.0" } bevy_ecs_macros = { path = "macros", version = "0.13.0" } -async-channel = "2.1.0" +async-channel = "2.2.0" fixedbitset = "0.4.2" rustc-hash = "1.1" downcast-rs = "1.2" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c1bb39ba5b..9b4d2e003d 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -93,7 +93,7 @@ encase = { version = "0.7", features = ["glam"] } profiling = { version = "1", features = [ "profile-with-tracing", ], optional = true } -async-channel = "2.1.0" +async-channel = "2.2.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 88d8b102d7..f63d74c356 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -14,7 +14,7 @@ multi-threaded = [] [dependencies] futures-lite = "2.0.1" async-executor = "1.7.2" -async-channel = "2.1.0" +async-channel = "2.2.0" async-io = { version = "2.0.0", optional = true } async-task = "4.2.0" concurrent-queue = "2.0.0"