2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_wgpu"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-08-10 00:24:27 +00:00
|
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
|
|
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"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
2020-08-10 00:39:28 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.1" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
|
|
|
bevy_core = { path = "../bevy_core", version = "0.1" }
|
|
|
|
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.1" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
|
|
|
bevy_render = { path = "../bevy_render", version = "0.1" }
|
|
|
|
bevy_window = { path = "../bevy_window", version = "0.1" }
|
|
|
|
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.1" }
|
2020-04-06 03:19:02 +00:00
|
|
|
|
2020-08-10 00:39:28 +00:00
|
|
|
# other
|
2020-07-11 02:42:32 +00:00
|
|
|
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "8c4d814607a303458ad9453da59dfc3a9951d7a3" }
|
2020-06-04 22:58:02 +00:00
|
|
|
pollster = "0.2.0"
|
2020-04-09 22:03:54 +00:00
|
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
2020-04-10 20:10:46 +00:00
|
|
|
crossbeam-channel = "0.4.2"
|
|
|
|
crossbeam-utils = "0.7.2"
|