From 40d7ee3a47ebd38c43a458601ede1d0cc9cc18db Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Fri, 20 Jan 2023 12:12:29 +0100 Subject: [PATCH] Demand newer async-channel version After #6503, bevy_render uses the `send_blocking` method introduced in async-channel 1.7, but depended only on ^1.4. Both bevy_ecs and bevy_tasks also depends on async-channel but they didn't use any newer features. --- crates/bevy_render/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index b66739e2b8cab..b47461e769364 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -76,4 +76,4 @@ basis-universal = { version = "0.2.0", optional = true } encase = { version = "0.4", features = ["glam"] } # For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans. profiling = { version = "1", features = ["profile-with-tracing"], optional = true } -async-channel = "1.4" +async-channel = "1.8"