2020-08-29 19:35:41 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_tasks"
|
2023-03-06 05:13:36 +00:00
|
|
|
version = "0.11.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-11-03 21:34:00 +00:00
|
|
|
description = "A task executor for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-11-03 21:34:00 +00:00
|
|
|
keywords = ["bevy"]
|
2020-08-29 19:35:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-10 19:54:24 +00:00
|
|
|
futures-lite = "1.4.0"
|
2020-09-20 18:27:24 +00:00
|
|
|
async-executor = "1.3.0"
|
2020-09-09 20:12:50 +00:00
|
|
|
async-channel = "1.4.2"
|
2022-11-07 21:43:07 +00:00
|
|
|
async-task = "4.2.0"
|
2022-12-13 21:00:43 +00:00
|
|
|
concurrent-queue = "2.0.0"
|
2021-07-14 20:52:50 +00:00
|
|
|
|
2020-09-25 22:26:23 +00:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
wasm-bindgen-futures = "0.4"
|
2021-07-14 20:52:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|