Skip to content

Commit 5175722

Browse files
authored
Update winit to 0.25 (#1586)
1 parent 2f7e7af commit 5175722

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: CHANGELOG_VULKANO.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
- Fixed a few documentation errors.
2828
- It is now possible to construct a graphics pipeline without a fragment shader.
2929
- Added support for all core Vulkan 1.1 and 1.2 device features.
30+
- Updated winit to 0.25.
3031

3132
# Version 0.23.0 (2021-04-10)
3233

Diff for: examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ vulkano = { path = "../vulkano" }
1212
vulkano-shaders = { path = "../vulkano-shaders" }
1313
# The Vulkan library doesn't provide any functionality to create and handle windows, as
1414
# this would be out of scope. In order to open a window, we are going to use the `winit` crate.
15-
winit = "0.24"
15+
winit = "0.25"
1616
# The `vulkano_win` crate is the link between `vulkano` and `winit`. Vulkano doesn't know about winit,
1717
# and winit doesn't know about vulkano, so import a crate that will provide a link between the two.
1818
vulkano-win = { path = "../vulkano-win" }

Diff for: vulkano-win/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ winit_ = ["winit", "metal", "cocoa", "objc"]
1717
raw-window-handle_ = ["raw-window-handle"]
1818

1919
[dependencies]
20-
winit = { version = "0.24", optional = true }
20+
winit = { version = "0.25", optional = true }
2121
vulkano = { version = "0.23.0", path = "../vulkano" }
2222
raw-window-handle = { version = "0.3.3", optional = true }
2323

0 commit comments

Comments
 (0)