2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_asset"
|
2022-11-12 20:01:29 +00:00
|
|
|
version = "0.9.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
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"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-10 00:24:27 +00:00
|
|
|
keywords = ["bevy"]
|
2020-04-06 03:19:02 +00:00
|
|
|
|
2020-05-17 03:18:30 +00:00
|
|
|
[features]
|
2021-11-13 21:15:22 +00:00
|
|
|
default = []
|
2020-05-17 03:18:30 +00:00
|
|
|
filesystem_watcher = ["notify"]
|
2022-02-18 22:56:57 +00:00
|
|
|
debug_asset_server = ["filesystem_watcher"]
|
2020-05-17 03:18:30 +00:00
|
|
|
|
2020-04-06 03:19:02 +00:00
|
|
|
[dependencies]
|
2020-08-10 00:39:28 +00:00
|
|
|
# bevy
|
2022-11-12 20:01:29 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.9.0" }
|
|
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
|
|
|
|
bevy_log = { path = "../bevy_log", version = "0.9.0" }
|
|
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
|
|
|
|
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }
|
2020-05-03 01:35:18 +00:00
|
|
|
|
2020-08-10 00:39:28 +00:00
|
|
|
# other
|
2020-05-25 19:03:50 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-02-01 21:30:38 +00:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-07-15 21:25:49 +00:00
|
|
|
anyhow = "1.0.4"
|
2020-05-17 03:18:30 +00:00
|
|
|
thiserror = "1.0"
|
2020-10-18 20:48:15 +00:00
|
|
|
downcast-rs = "1.2.0"
|
2022-07-14 17:00:01 +00:00
|
|
|
fastrand = "1.7.0"
|
2022-09-02 15:54:54 +00:00
|
|
|
notify = { version = "5.0.0", optional = true }
|
2022-07-14 21:17:16 +00:00
|
|
|
parking_lot = "0.12.1"
|
2020-10-20 00:29:31 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
wasm-bindgen = { version = "0.2" }
|
2022-02-06 01:07:56 +00:00
|
|
|
web-sys = { version = "0.3", features = ["Request", "Window", "Response"] }
|
2020-10-20 00:29:31 +00:00
|
|
|
wasm-bindgen-futures = "0.4"
|
2020-10-29 00:08:33 +00:00
|
|
|
js-sys = "0.3"
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7 (#6218)
# Objective
- Update `wgpu` to 0.14.0, `naga` to `0.10.0`, `winit` to 0.27.4, `raw-window-handle` to 0.5.0, `ndk` to 0.7.
## Solution
---
## Changelog
### Changed
- Changed `RawWindowHandleWrapper` to `RawHandleWrapper` which wraps both `RawWindowHandle` and `RawDisplayHandle`, which satisfies the `impl HasRawWindowHandle and HasRawDisplayHandle` that `wgpu` 0.14.0 requires.
- Changed `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, change its type from `bool` to `bevy_window::CursorGrabMode`.
## Migration Guide
- Adjust usage of `bevy_window::WindowDescriptor`'s `cursor_locked` to `cursor_grab_mode`, and adjust its type from `bool` to `bevy_window::CursorGrabMode`.
2022-10-19 17:40:23 +00:00
|
|
|
ndk-glue = { version = "0.7" }
|
2021-06-08 02:46:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
futures-lite = "1.4.0"
|
|
|
|
tempfile = "3.2.0"
|
2022-11-12 20:01:29 +00:00
|
|
|
bevy_core = { path = "../bevy_core", version = "0.9.0" }
|