[dependencies.bevy_app]
version = "0.15.0"
[dependencies.bevy_ecs]
version = "0.15.0"
[dependencies.tokio]
features = ["rt", "sync"]
version = "1"
[dev-dependencies.bevy]
default-features = false
features = ["bevy_core_pipeline", "bevy_asset", "bevy_render", "bevy_winit", "bevy_window", "x11"]
version = "0.15.0"
[dev-dependencies.tokio]
features = ["time"]
version = "1"
[[example]]
name = "async_fn"
path = "examples/async_fn.rs"
[[example]]
name = "change_clear_color"
path = "examples/change_clear_color.rs"
[[example]]
name = "current_thread_runtime"
path = "examples/current_thread_runtime.rs"
[[example]]
name = "custom_schedule_label"
path = "examples/custom_schedule_label.rs"
[[example]]
name = "shutdown_after_sleep"
path = "examples/shutdown_after_sleep.rs"
[lib]
name = "bevy_tokio_tasks"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development", "asynchronous"]
description = "Simple integration of a Tokio runtime into a Bevy app for background processing."
edition = "2021"
homepage = "https://crates.io/crates/bevy-tokio-tasks"
keywords = ["gamedev", "bevy", "tokio", "async", "plugin"]
license = "CC0-1.0"
name = "bevy-tokio-tasks"
readme = "README.md"
repository = "https://github.com/EkardNT/bevy-tokio-tasks"
version = "0.15.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["rt-multi-thread"]
version = "1"