2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_wgpu"
|
2020-12-19 19:28:00 +00:00
|
|
|
version = "0.4.0"
|
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 = "A wgpu render backend 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
|
|
|
|
|
|
|
[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
|
2020-12-19 19:28:00 +00: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-06 03:19:02 +00:00
|
|
|
|
2020-08-10 00:39:28 +00:00
|
|
|
# other
|
2020-08-22 16:42:00 +00:00
|
|
|
wgpu = "0.6"
|
2020-09-10 19:54:24 +00:00
|
|
|
futures-lite = "1.4.0"
|
|
|
|
crossbeam-channel = "0.4.4"
|
2020-08-21 21:55:16 +00:00
|
|
|
crossbeam-utils = "0.7.2"
|
2020-09-10 19:54:24 +00:00
|
|
|
parking_lot = "0.11.0"
|