2020-04-05 20:19:02 -07:00
|
|
|
[package]
|
|
|
|
name = "bevy_wgpu"
|
2020-12-19 11:28:00 -08:00
|
|
|
version = "0.4.0"
|
2020-04-05 20:19:02 -07:00
|
|
|
edition = "2018"
|
2020-09-11 03:54:24 +08:00
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
2020-08-09 17:24:27 -07:00
|
|
|
description = "A wgpu render backend for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["bevy"]
|
2020-04-05 20:19:02 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["bevy_winit"]
|
2020-08-16 01:11:17 -07:00
|
|
|
trace = ["wgpu/trace"]
|
2020-04-05 20:19:02 -07:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
2020-12-19 11:28:00 -08:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.4.0" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.4.0" }
|
|
|
|
bevy_core = { path = "../bevy_core", version = "0.4.0" }
|
|
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.4.0" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" }
|
|
|
|
bevy_render = { path = "../bevy_render", version = "0.4.0" }
|
|
|
|
bevy_window = { path = "../bevy_window", version = "0.4.0" }
|
|
|
|
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.4.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.4.0" }
|
2020-04-05 20:19:02 -07:00
|
|
|
|
2020-08-09 17:39:28 -07:00
|
|
|
# other
|
2021-01-31 23:06:42 -05:00
|
|
|
wgpu = "0.7"
|
2020-09-11 03:54:24 +08:00
|
|
|
futures-lite = "1.4.0"
|
2021-02-01 13:30:38 -08:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-02-01 13:51:44 -08:00
|
|
|
crossbeam-utils = "0.8.1"
|
2020-09-11 03:54:24 +08:00
|
|
|
parking_lot = "0.11.0"
|