2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_wgpu"
|
2021-04-06 18:48:48 +00:00
|
|
|
version = "0.5.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-08-10 00:24:27 +00:00
|
|
|
description = "A wgpu render backend 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
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["bevy_winit"]
|
2020-08-16 08:11:17 +00:00
|
|
|
trace = ["wgpu/trace"]
|
2020-04-06 03:19:02 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
2021-04-06 18:48:48 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.5.0" }
|
|
|
|
bevy_core = { path = "../bevy_core", version = "0.5.0" }
|
|
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" }
|
|
|
|
bevy_render = { path = "../bevy_render", version = "0.5.0" }
|
|
|
|
bevy_window = { path = "../bevy_window", version = "0.5.0" }
|
|
|
|
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
2020-04-06 03:19:02 +00:00
|
|
|
|
2020-08-10 00:39:28 +00:00
|
|
|
# other
|
2021-10-08 19:55:24 +00:00
|
|
|
wgpu = { version = "0.11.0", features = ["spirv"] }
|
2020-09-10 19:54:24 +00:00
|
|
|
futures-lite = "1.4.0"
|
2021-02-01 21:30:38 +00:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-02-01 21:51:44 +00:00
|
|
|
crossbeam-utils = "0.8.1"
|
2020-09-10 19:54:24 +00:00
|
|
|
parking_lot = "0.11.0"
|