
# Objective bevy 0.13 does not compile with async_channel 2.1.0 See https://cdn.discordapp.com/attachments/1208557723973591051/1208557724229439518/image.png?ex=65e3b817&is=65d14317&hm=b0eccc620b3239d3f1c9ffff70aa6f149d3546a47fcd14f70ab5c0667144ecf5& ## Solution Update async_channel to 2.2.0
30 lines
627 B
TOML
30 lines
627 B
TOML
[package]
|
|
name = "bevy_tasks"
|
|
version = "0.13.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 = "2.2.0"
|
|
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]
|
|
web-time = { version = "0.2" }
|
|
|
|
[lints]
|
|
workspace = true
|