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
This commit is contained in:
François Mockers 2024-09-28 21:21:59 +02:00 committed by GitHub
parent 29edad4690
commit 89925ee351
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@ encase = { version = "0.10", features = ["glam"] }
profiling = { version = "1", features = [ profiling = { version = "1", features = [
"profile-with-tracing", "profile-with-tracing",
], optional = true } ], optional = true }
async-channel = "2.2.0" async-channel = "2.3.0"
nonmax = "0.5" nonmax = "0.5"
smallvec = { version = "1.11", features = ["const_new"] } smallvec = { version = "1.11", features = ["const_new"] }
offset-allocator = "0.2" offset-allocator = "0.2"

View file

@ -14,7 +14,7 @@ multi_threaded = ["dep:async-channel", "dep:concurrent-queue"]
[dependencies] [dependencies]
futures-lite = "2.0.1" futures-lite = "2.0.1"
async-executor = "1.11" async-executor = "1.11"
async-channel = { version = "2.2.0", optional = true } async-channel = { version = "2.3.0", optional = true }
async-io = { version = "2.0.0", optional = true } async-io = { version = "2.0.0", optional = true }
concurrent-queue = { version = "2.0.0", optional = true } concurrent-queue = { version = "2.0.0", optional = true }