bevy/crates/bevy_tasks/Cargo.toml

21 lines
523 B
TOML
Raw Normal View History

[package]
name = "bevy_tasks"
2020-09-20 22:58:32 +00:00
version = "0.2.1"
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>",
]
edition = "2018"
# 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"
event-listener = "2.4.0"
2020-09-20 18:27:24 +00:00
async-executor = "1.3.0"
async-channel = "1.4.2"
2020-09-10 19:54:24 +00:00
num_cpus = "1"
2020-09-25 22:26:23 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"