mirror of
https://github.com/bevyengine/bevy
synced 2024-11-24 21:53:07 +00:00
8d67832dfa
# Objective We should bump our version to 0.8.0-dev after releasing 0.7.0, according to our release checklist. ## Solution Do it.
22 lines
546 B
TOML
22 lines
546 B
TOML
[package]
|
|
name = "bevy_tasks"
|
|
version = "0.8.0-dev"
|
|
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"]
|
|
|
|
[dependencies]
|
|
futures-lite = "1.4.0"
|
|
event-listener = "2.5.2"
|
|
async-executor = "1.3.0"
|
|
async-channel = "1.4.2"
|
|
num_cpus = "1.0.1"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
[dev-dependencies]
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|