Skip to content

Commit

Permalink
Update winit 0.27 (#302)
Browse files Browse the repository at this point in the history
* Update winit 0.27

Closes #292

This _does not_ update `winit` in the `imgui-winit` example. See #302 (comment) for discussion.
  • Loading branch information
parasyte authored Oct 1, 2022
1 parent 9c3edeb commit a2c6398
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pollster = "0.2"

[dev-dependencies]
pixels-mocks = { path = "internals/pixels-mocks" }
winit = "0.26"
winit = "0.27"

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions examples/conway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ line_drawing = "1.0"
log = "0.4"
pixels = { path = "../.." }
randomize = "3.0"
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"
4 changes: 2 additions & 2 deletions examples/custom-shader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ bytemuck = "1.10"
env_logger = "0.9"
log = "0.4"
pixels = { path = "../.." }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"
6 changes: 3 additions & 3 deletions examples/invaders/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ default = ["optimize"]
[dependencies]
byteorder = "1.3"
env_logger = "0.9"
game-loop = { version = "0.9", features = ["window"] }
game-loop = { version = "0.10", features = ["winit"] }
getrandom = "0.2"
gilrs = "0.9"
log = "0.4"
pixels = { path = "../.." }
randomize = "3.0"
simple-invaders = { path = "simple-invaders" }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"
10 changes: 5 additions & 5 deletions examples/minimal-egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ optimize = ["log/release_max_level_warn"]
default = ["optimize"]

[dependencies]
egui = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" }
egui-wgpu = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" }
egui-winit = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2", default-features = false, features = ["links"] }
egui = "0.19"
egui-wgpu = "0.19"
egui-winit = { version = "0.19", default-features = false, features = ["links"] }
env_logger = "0.9"
log = "0.4"
pixels = { path = "../.." }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"
4 changes: 2 additions & 2 deletions examples/minimal-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ default = ["optimize"]
[dependencies]
log = "0.4"
pixels = { path = "../.." }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions examples/minimal-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ default = ["optimize"]
env_logger = "0.9"
log = "0.4"
pixels = { path = "../.." }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"
4 changes: 2 additions & 2 deletions examples/raqote-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ env_logger = "0.9"
euclid = "0.22"
log = "0.4"
pixels = { path = "../.." }
winit = "0.26"
winit_input_helper = "0.12"
winit = "0.27"
winit_input_helper = "0.13"

[dependencies.raqote]
git = "https://github.com/jrmuizel/raqote.git"
Expand Down

0 comments on commit a2c6398

Please sign in to comment.