bevy/crates/bevy_wgpu/Cargo.toml

28 lines
801 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-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
legion = { path = "../bevy_legion" }
# render
2020-05-06 04:25:56 +00:00
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "89ee5bffd3c37279f733b76b05e5d030aba035db" }
2020-05-04 20:11:51 +00:00
# wgpu = { version = "0.5.0" }
2020-04-06 03:19:02 +00:00
futures = "0.3"
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"