bevy/crates/bevy_wgpu/Cargo.toml

27 lines
772 B
TOML
Raw Normal View History

2020-04-06 03:19:02 +00:00
[package]
name = "bevy_wgpu"
version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018"
[features]
default = ["bevy_winit"]
[dependencies]
# bevy
2020-05-04 18:23:59 +00:00
bevy_app = { path = "../bevy_app" }
bevy_asset = { path = "../bevy_asset" }
bevy_core = { path = "../bevy_core" }
2020-05-04 19:36:18 +00:00
bevy_diagnostic = { path = "../bevy_diagnostic" }
2020-07-10 04:18:35 +00:00
bevy_ecs = { path = "../bevy_ecs" }
2020-05-04 18:23:59 +00:00
bevy_render = { path = "../bevy_render" }
bevy_window = { path = "../bevy_window" }
bevy_winit = { path = "../bevy_winit", optional = true }
2020-04-06 03:19:02 +00:00
# render
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "8c4d814607a303458ad9453da59dfc3a9951d7a3" }
2020-04-06 03:19:02 +00:00
pollster = "0.2.0"
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"