Skip to content

Commit 89925ee

Browse files
authored
bump async-channel to 2.3.0 (#15497)
# Objective - We use a feature introduced in async-channel 2.3.0, `force_send` - Existing project fail to compile as they have a lock file on the 2.2.X ## Solution - Bump async-channel
1 parent 29edad4 commit 89925ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/bevy_render/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ encase = { version = "0.10", features = ["glam"] }
100100
profiling = { version = "1", features = [
101101
"profile-with-tracing",
102102
], optional = true }
103-
async-channel = "2.2.0"
103+
async-channel = "2.3.0"
104104
nonmax = "0.5"
105105
smallvec = { version = "1.11", features = ["const_new"] }
106106
offset-allocator = "0.2"

crates/bevy_tasks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ multi_threaded = ["dep:async-channel", "dep:concurrent-queue"]
1414
[dependencies]
1515
futures-lite = "2.0.1"
1616
async-executor = "1.11"
17-
async-channel = { version = "2.2.0", optional = true }
17+
async-channel = { version = "2.3.0", optional = true }
1818
async-io = { version = "2.0.0", optional = true }
1919
concurrent-queue = { version = "2.0.0", optional = true }
2020

0 commit comments

Comments
 (0)