use temporary wgpu fork and latest publish winit crate

This commit is contained in:
Carter Anderson 2020-08-09 21:26:34 -07:00
parent 3deeb05264
commit 7bdab60e31
2 changed files with 3 additions and 2 deletions

View file

@ -24,7 +24,7 @@ bevy_window = { path = "../bevy_window", version = "0.1" }
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.1" }
# other
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "8c4d814607a303458ad9453da59dfc3a9951d7a3" }
wgpu = { version = "0.1.0", package = "cart-tmp-wgpu" }
pollster = "0.2.0"
log = { version = "0.4", features = ["release_max_level_info"] }
crossbeam-channel = "0.4.2"

View file

@ -18,5 +18,6 @@ bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_window = { path = "../bevy_window", version = "0.1" }
# other
winit = { git = "https://github.com/rust-windowing/winit/", default-features = false, features = ["x11"] }
# TODO: when winit gets a new version, disable wayland feature to cut dependencies
winit = "0.22.2"
log = { version = "0.4", features = ["release_max_level_info"] }