mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
fe32a60577
1) Sets `LoadState` properly on all failing cases in `AssetServer::load_async` 2) Adds more tests for sad and happy paths of asset loading _Note_: this brings in the `tempfile` crate.
51 lines
1.5 KiB
TOML
51 lines
1.5 KiB
TOML
[package]
|
|
name = "bevy_asset"
|
|
version = "0.5.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides asset functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[features]
|
|
default = ["filesystem_watcher"]
|
|
filesystem_watcher = ["notify"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" }
|
|
bevy_log = { path = "../bevy_log", version = "0.5.0" }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
|
|
bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|
|
|
# other
|
|
serde = { version = "1", features = ["derive"] }
|
|
ron = "0.6.2"
|
|
crossbeam-channel = "0.5.0"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
downcast-rs = "1.2.0"
|
|
notify = { version = "5.0.0-pre.2", optional = true }
|
|
parking_lot = "0.11.0"
|
|
rand = "0.8.0"
|
|
|
|
[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"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
ndk-glue = { version = "0.2" }
|
|
|
|
[dev-dependencies]
|
|
futures-lite = "1.4.0"
|
|
tempfile = "3.2.0"
|