Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4bf5827

Browse files
committed
Update winit 0.27
Closes #292 TODO examples: - [x] `conway` - [x] `custom-shader` - [ ] `imgui-winit` - TBD: `imgui-winit-support` needs to be updated. See: imgui-rs/imgui-rs#659 - TBD: `imgui-wgpu` needs to be updated (No PR yet) - [ ] `invaders` - TBD: `game-loop` needs to be updated. (No PR yet) - [x] `minimal-egui` - [x] `minimal-web` - [x] `minimal-winit` - [x] `raqote-winit`
1 parent 6605951 commit 4bf5827

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

‎Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pollster = "0.2"
3131

3232
[dev-dependencies]
3333
pixels-mocks = { path = "internals/pixels-mocks" }
34-
winit = "0.26"
34+
winit = "0.27"
3535

3636
[workspace]
3737
members = [

‎examples/conway/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ line_drawing = "1.0"
1717
log = "0.4"
1818
pixels = { path = "../.." }
1919
randomize = "3.0"
20-
winit = "0.26"
21-
winit_input_helper = "0.12"
20+
winit = "0.27"
21+
winit_input_helper = "0.13"

‎examples/custom-shader/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ bytemuck = "1.10"
1414
env_logger = "0.9"
1515
log = "0.4"
1616
pixels = { path = "../.." }
17-
winit = "0.26"
18-
winit_input_helper = "0.12"
17+
winit = "0.27"
18+
winit_input_helper = "0.13"

‎examples/minimal-egui/Cargo.toml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ optimize = ["log/release_max_level_warn"]
1010
default = ["optimize"]
1111

1212
[dependencies]
13-
egui = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" }
14-
egui-wgpu = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2" }
15-
egui-winit = { git = "https://github.com/emilk/egui.git", rev = "38a67f86467f16084443258ae5e7761429c00db2", default-features = false, features = ["links"] }
13+
egui = { git = "https://github.com/emilk/egui.git", rev = "eeeb4b7de2d08b7923a0e19cf1a711b7219afa1f" }
14+
egui-wgpu = { git = "https://github.com/emilk/egui.git", rev = "eeeb4b7de2d08b7923a0e19cf1a711b7219afa1f" }
15+
egui-winit = { git = "https://github.com/emilk/egui.git", rev = "eeeb4b7de2d08b7923a0e19cf1a711b7219afa1f", default-features = false, features = ["links"] }
1616
env_logger = "0.9"
1717
log = "0.4"
1818
pixels = { path = "../.." }
19-
winit = "0.26"
20-
winit_input_helper = "0.12"
19+
winit = "0.27"
20+
winit_input_helper = "0.13"

‎examples/minimal-web/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ default = ["optimize"]
1414
log = "0.4"
1515
pixels = { path = "../.." }
1616
wgpu = "0.13"
17-
winit = "0.26"
18-
winit_input_helper = "0.12"
17+
winit = "0.27"
18+
winit_input_helper = "0.13"
1919

2020
[target.'cfg(target_arch = "wasm32")'.dependencies]
2121
console_error_panic_hook = "0.1"

‎examples/minimal-winit/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ default = ["optimize"]
1313
env_logger = "0.9"
1414
log = "0.4"
1515
pixels = { path = "../.." }
16-
winit = "0.26"
17-
winit_input_helper = "0.12"
16+
winit = "0.27"
17+
winit_input_helper = "0.13"

‎examples/raqote-winit/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ env_logger = "0.9"
1414
euclid = "0.22"
1515
log = "0.4"
1616
pixels = { path = "../.." }
17-
winit = "0.26"
18-
winit_input_helper = "0.12"
17+
winit = "0.27"
18+
winit_input_helper = "0.13"
1919

2020
[dependencies.raqote]
2121
git = "https://github.com/jrmuizel/raqote.git"

0 commit comments

Comments
 (0)