forked from EkardNT/bevy-tokio-tasks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (20 loc) · 921 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "bevy-tokio-tasks"
# Major and minor version here should match bevy's. Patch version can vary.
version = "0.14.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.14.0"
bevy_ecs = "0.14.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.14.0", default-features = false, features = ["bevy_core_pipeline", "bevy_asset", "bevy_render", "bevy_winit", "x11"] }
tokio = { version = "1", features = ["time"] }