-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
34 lines (30 loc) · 987 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
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "iyes_progress"
version = "0.13.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/IyesGames/iyes_progress"
keywords = ["game", "gamedev", "bevy"]
categories = ["game-engines"]
description = "Bevy plugin to help implement loading states"
[dependencies]
bevy_asset = { version = "0.15.0", optional = true }
bevy_ecs = { version = "0.15.0" }
bevy_app = { version = "0.15.0" }
bevy_state = { version = "0.15.0" }
bevy_log = { version = "0.15.0", optional = true }
bevy_utils = { version = "0.15.0" }
parking_lot = "0.12.3"
derive_more = { version = "1.0.0", features = ["full"] }
crossbeam-channel = { version = "0.5.13", optional = true }
[features]
# Support for debug functionality (such as logging progress to console)
debug = ["dep:bevy_log"]
assets = ["dep:bevy_asset"]
async = ["dep:crossbeam-channel"]
[dev-dependencies]
bevy = { version = "0.15.0" }
[[example]]
name = "async"
required-features = ["async"]