bevy/crates/bevy_asset/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2020-04-06 03:19:02 +00:00
[package]
name = "bevy_asset"
2020-09-20 22:58:32 +00:00
version = "0.2.1"
2020-04-06 03:19:02 +00:00
edition = "2018"
2020-09-10 19:54:24 +00:00
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>",
]
2020-08-10 00:24:27 +00:00
description = "Provides asset functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT"
keywords = ["bevy"]
2020-04-06 03:19:02 +00:00
2020-05-17 03:18:30 +00:00
[features]
default = ["filesystem_watcher"]
filesystem_watcher = ["notify"]
2020-04-06 03:19:02 +00:00
[dependencies]
# bevy
2020-09-20 22:58:32 +00:00
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" }
2020-09-20 22:58:32 +00:00
bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" }
bevy_property = { path = "../bevy_property", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }
# other
uuid = { version = "0.8", features = ["v4", "serde"] }
serde = { version = "1", features = ["derive"] }
2020-09-10 19:54:24 +00:00
crossbeam-channel = "0.4.4"
anyhow = "1.0"
2020-05-17 03:18:30 +00:00
thiserror = "1.0"
log = { version = "0.4", features = ["release_max_level_info"] }
notify = { version = "5.0.0-pre.2", optional = true }
2020-09-10 19:54:24 +00:00
parking_lot = "0.11.0"
2020-09-25 22:26:23 +00:00
async-trait = "0.1.40"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2" }
web-sys = { version = "0.3", features = ["Request", "Window", "Response"]}
wasm-bindgen-futures = "0.4"
js-sys = "0.3"