From 17294eebb22da53c9008d55f0c7c0a55b1235978 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Wed, 22 Jan 2025 21:24:34 -0800 Subject: [PATCH] Update `async-broadcast` (#17500) # Objective Dependabot tried up update this earlier, but it was noticed that this broke wasm builds. A new release has happened since then which includes a fix for that. Here's the [changelog](https://github.com/smol-rs/async-broadcast/blob/master/CHANGELOG.md). Closes #11830 ## Solution Use `async-broadcast` `0.7.2`. ## Testing I ran a few some examples involving assets on macos / wasm. --- crates/bevy_asset/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 5ae415c1f123d..77a5dc0471069 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -30,7 +30,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.16.0-dev" } stackfuture = "0.3" atomicow = "1.0" -async-broadcast = "0.5" +async-broadcast = "0.7.2" async-fs = "2.0" async-lock = "3.0" bitflags = { version = "2.3", features = ["serde"] }