Update async-channel to 2.2.0 (#12004)

# Objective

bevy 0.13 does not compile with async_channel 2.1.0

See


https://cdn.discordapp.com/attachments/1208557723973591051/1208557724229439518/image.png?ex=65e3b817&is=65d14317&hm=b0eccc620b3239d3f1c9ffff70aa6f149d3546a47fcd14f70ab5c0667144ecf5&

## Solution

Update async_channel to 2.2.0
This commit is contained in:
Mincong Lu 2024-02-22 03:34:39 +08:00 committed by GitHub
parent 328008f904
commit 464e2871c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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]

View file

@ -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"