[package]
name = "bevy-tokio-tasks"
version = "0.15.0"
edition = "2021"
license = "CC0-1.0"
description = "Simple integration of a Tokio runtime into a Bevy app for background processing."
homepage = "https://crates.io/crates/bevy-tokio-tasks"
repository = "https://github.com/EkardNT/bevy-tokio-tasks"
keywords = ["gamedev", "bevy", "tokio", "async", "plugin"]
categories = ["game-development", "asynchronous"]
[dependencies]
bevy_app = "0.15.0"
bevy_ecs = "0.15.0"
tokio = { version = "1", features = ["rt", "sync"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1", features = ["rt-multi-thread"] }
[dev-dependencies]
bevy = { version = "0.15.0", default-features = false, features = ["bevy_core_pipeline", "bevy_asset", "bevy_render", "bevy_winit", "bevy_window", "x11"] }
tokio = { version = "1", features = ["time"] }