From c258d7aa244bca8ff7324b13d5274322c6e45c6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 04:06:30 +0000 Subject: [PATCH] build(deps): update winit requirement from 0.29 to 0.30 Updates the requirements on [winit](https://github.com/rust-windowing/winit) to permit the latest version. - [Release notes](https://github.com/rust-windowing/winit/releases) - [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-windowing/winit/compare/v0.29.1-beta...v0.30.0) --- updated-dependencies: - dependency-name: winit dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ash-examples/Cargo.toml | 2 +- ash-window/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ash-examples/Cargo.toml b/ash-examples/Cargo.toml index a93eaa145..dd2ab4f35 100644 --- a/ash-examples/Cargo.toml +++ b/ash-examples/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] image = "0.25" -winit = { version = "0.29", features = ["rwh_06"] } +winit = { version = "0.30", features = ["rwh_06"] } # 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. diff --git a/ash-window/Cargo.toml b/ash-window/Cargo.toml index fc04e14a1..30c0b1aba 100644 --- a/ash-window/Cargo.toml +++ b/ash-window/Cargo.toml @@ -26,7 +26,7 @@ raw-window-handle = "0.6" raw-window-metal = "0.4" [dev-dependencies] -winit = { version = "0.29", features = ["rwh_06"] } +winit = { version = "0.30", features = ["rwh_06"] } ash = { path = "../ash", version = "0.38", default-features = false, features = ["linked"] } [[example]]