From 8c63c9e08b32ce808e5db33442f86767d87011ac Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Tue, 21 Feb 2023 20:27:23 +0100 Subject: [PATCH] examples: Upgrade `winit` to `0.28` (#703) --- ash-window/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ash-window/Cargo.toml b/ash-window/Cargo.toml index b2960e9..0404a19 100644 --- a/ash-window/Cargo.toml +++ b/ash-window/Cargo.toml @@ -22,7 +22,7 @@ raw-window-handle = "0.5" raw-window-metal = "0.3" [dev-dependencies] -winit = "0.27.1" +winit = "0.28.0" ash = { path = "../ash", version = "0.37", default-features = false, features = ["linked"] } [[example]] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index adfc912..22ddf61 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] image = "0.24" raw-window-handle = "0.5" -winit = "0.27.1" +winit = "0.28.0" # The examples require the validation layers, which means the SDK or # equivalent development packages should be present, so we can link # directly and benefit from the infallible `Entry` constructor.