Skip to content

Commit f024bce

Browse files
author
Pascal Hertleif
committed
Demand newer async-channel version (#7301)
After #6503, bevy_render uses the `send_blocking` method introduced in async-channel 1.7, but depended only on ^1.4. I saw this after pulling main without running cargo update. # Objective - Fix minimum dependency version of async-channel ## Solution - Bump async-channel version constraint to ^1.8, which is currently the latest version. NOTE: Both bevy_ecs and bevy_tasks also depend on async-channel but they didn't use any newer features.
1 parent dfea88c commit f024bce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_render/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ basis-universal = { version = "0.2.0", optional = true }
7676
encase = { version = "0.4", features = ["glam"] }
7777
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
7878
profiling = { version = "1", features = ["profile-with-tracing"], optional = true }
79-
async-channel = "1.4"
79+
async-channel = "1.8"

0 commit comments

Comments
 (0)