mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
bump bevy_tasks futures-lite to 2.0.1 (#10675)
# Objective Updates [`futures-lite`](https://github.com/smol-rs/futures-lite) in bevy_tasks to the next major version (1 -> 2). Also removes the duplication of `futures-lite`, as `async-fs` requires v 2, so there are currently 2 copies of futures-lite in the dependency tree. Futures-lite has received [a number of updates](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md) since bevy's current version `1.4`. --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com> Co-authored-by: Mike <mike.hsu@gmail.com>
This commit is contained in:
parent
790fafdbb0
commit
6f56380826
4 changed files with 5 additions and 5 deletions
|
@ -294,7 +294,7 @@ flate2 = "1.0"
|
|||
serde = { version = "1", features = ["derive"] }
|
||||
bytemuck = "1.7"
|
||||
# Needed to poll Task examples
|
||||
futures-lite = "1.11.3"
|
||||
futures-lite = "2.0.1"
|
||||
crossbeam-channel = "0.5.0"
|
||||
argh = "0.1.12"
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ async-lock = "3.0"
|
|||
crossbeam-channel = "0.5"
|
||||
downcast-rs = "1.2"
|
||||
futures-io = "0.3"
|
||||
futures-lite = "1.12"
|
||||
futures-lite = "2.0.1"
|
||||
blake3 = "1.5"
|
||||
parking_lot = { version = "0.12", features = ["arc_lock", "send_guard"] }
|
||||
ron = "0.8"
|
||||
|
|
|
@ -75,7 +75,7 @@ smallvec = { version = "1.6", features = ["union", "const_generics"] }
|
|||
downcast-rs = "1.2.0"
|
||||
thread_local = "1.1"
|
||||
thiserror = "1.0"
|
||||
futures-lite = "1.4.0"
|
||||
futures-lite = "2.0.1"
|
||||
hexasphere = "9.0"
|
||||
ddsfile = { version = "0.5.0", optional = true }
|
||||
ktx2 = { version = "0.3.0", optional = true }
|
||||
|
|
|
@ -12,8 +12,8 @@ keywords = ["bevy"]
|
|||
multi-threaded = []
|
||||
|
||||
[dependencies]
|
||||
futures-lite = "1.4.0"
|
||||
async-executor = "1.3.0"
|
||||
futures-lite = "2.0.1"
|
||||
async-executor = "1.7.2"
|
||||
async-channel = "1.4.2"
|
||||
async-io = { version = "2.0.0", optional = true }
|
||||
async-task = "4.2.0"
|
||||
|
|
Loading…
Reference in a new issue