mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
6f56380826
# 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>
29 lines
655 B
TOML
29 lines
655 B
TOML
[package]
|
|
name = "bevy_tasks"
|
|
version = "0.12.0"
|
|
edition = "2021"
|
|
description = "A task executor for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[features]
|
|
multi-threaded = []
|
|
|
|
[dependencies]
|
|
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"
|
|
concurrent-queue = "2.0.0"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
[dev-dependencies]
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
|
|
|
[lints]
|
|
workspace = true
|