2020-08-29 19:35:41 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_tasks"
|
2021-04-06 18:48:48 +00:00
|
|
|
version = "0.5.0"
|
2021-10-25 18:00:13 +00:00
|
|
|
edition = "2021"
|
2020-08-29 19:35:41 +00:00
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Lachlan Sneff <lachlan.sneff@gmail.com>",
|
2020-09-10 19:54:24 +00:00
|
|
|
"Philip Degarmo <aclysma@gmail.com>",
|
2020-08-29 19:35:41 +00:00
|
|
|
]
|
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
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-10 19:54:24 +00:00
|
|
|
futures-lite = "1.4.0"
|
2020-09-09 20:12:50 +00:00
|
|
|
event-listener = "2.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"
|
2021-07-15 21:25:49 +00:00
|
|
|
num_cpus = "1.0.1"
|
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"] }
|