From 1bf0aada799f0ca9f6cc71a641686b5b3c4d91bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 06:45:17 +0000 Subject: [PATCH] Update winit requirement from 0.28 to 0.29 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.28.0...v0.29.4) --- updated-dependencies: - dependency-name: winit dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/animation/Cargo.toml | 2 +- examples/cube-no-framework/Cargo.toml | 2 +- examples/cube/Cargo.toml | 2 +- examples/egui/Cargo.toml | 2 +- examples/scene-viewer/Cargo.toml | 2 +- examples/skinning/Cargo.toml | 2 +- examples/static-gltf/Cargo.toml | 2 +- examples/textured-quad/Cargo.toml | 2 +- rend3-framework/Cargo.toml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/animation/Cargo.toml b/examples/animation/Cargo.toml index 12979c78..e54153f4 100644 --- a/examples/animation/Cargo.toml +++ b/examples/animation/Cargo.toml @@ -34,7 +34,7 @@ rend3-anim = { version = "^0.3.0", path = "../../rend3-anim" } # Import gltf models rend3-gltf = { version = "^0.3.0", path = "../../rend3-gltf" } # windowing -winit = "0.28" +winit = "0.29" image = { version = "0.24", default-features = false, features = ["jpeg"] } [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/examples/cube-no-framework/Cargo.toml b/examples/cube-no-framework/Cargo.toml index 3740bb42..07ca1b83 100644 --- a/examples/cube-no-framework/Cargo.toml +++ b/examples/cube-no-framework/Cargo.toml @@ -25,7 +25,7 @@ rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" } # Provides `block_on` to wait for futures from sync code pollster = "0.3" # windowing -winit = "0.28" +winit = "0.29" [target.'cfg(target_arch = "wasm32")'.dependencies] console_log = "1" diff --git a/examples/cube/Cargo.toml b/examples/cube/Cargo.toml index 09797839..8359234f 100644 --- a/examples/cube/Cargo.toml +++ b/examples/cube/Cargo.toml @@ -28,7 +28,7 @@ rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" } # Framework that deals with the event loop, setting up the renderer, and platform differences. rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" } # windowing -winit = "0.28" +winit = "0.29" [target.'cfg(target_arch = "wasm32")'.dependencies] console_log = "1" diff --git a/examples/egui/Cargo.toml b/examples/egui/Cargo.toml index f4759d01..ccf88729 100644 --- a/examples/egui/Cargo.toml +++ b/examples/egui/Cargo.toml @@ -33,7 +33,7 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" } # Programmable render list that dictates how the scene renders rend3-routine = { version = "^0.3.0",path = "../../rend3-routine" } # Windowing -winit = "0.28" +winit = "0.29" # Opening URL's webbrowser = "0.8.2" # Creating textures diff --git a/examples/scene-viewer/Cargo.toml b/examples/scene-viewer/Cargo.toml index 989ff6af..67205f0a 100644 --- a/examples/scene-viewer/Cargo.toml +++ b/examples/scene-viewer/Cargo.toml @@ -64,7 +64,7 @@ smallvec = "1" tracy-client = { version = "0.16", optional = true } wgpu = "0.18.0" wgpu-profiler = "0.15.0" -winit = "0.28" +winit = "0.29" [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen-futures = "0.4" diff --git a/examples/skinning/Cargo.toml b/examples/skinning/Cargo.toml index 8fd5b352..c3e00a10 100644 --- a/examples/skinning/Cargo.toml +++ b/examples/skinning/Cargo.toml @@ -32,7 +32,7 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" } # Import gltf models rend3-gltf = { version = "^0.3.0", path = "../../rend3-gltf" } # windowing -winit = "0.28" +winit = "0.29" [target.'cfg(target_arch = "wasm32")'.dependencies] console_log = "1" diff --git a/examples/static-gltf/Cargo.toml b/examples/static-gltf/Cargo.toml index cdc607f6..c4b72d64 100644 --- a/examples/static-gltf/Cargo.toml +++ b/examples/static-gltf/Cargo.toml @@ -27,4 +27,4 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" } # Programmable render list that dictates how the scene renders rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" } # windowing -winit = "0.28" +winit = "0.29" diff --git a/examples/textured-quad/Cargo.toml b/examples/textured-quad/Cargo.toml index cdf2fc71..ae588cb8 100644 --- a/examples/textured-quad/Cargo.toml +++ b/examples/textured-quad/Cargo.toml @@ -25,6 +25,6 @@ rend3-framework = { version = "^0.3.0", path = "../../rend3-framework" } # Programmable render list that dictates how the scene renders rend3-routine = { version = "^0.3.0", path = "../../rend3-routine" } # windowing -winit = "0.28" +winit = "0.29" # Load image image = { version = "0.24", default-features = false, features = ["png"]} diff --git a/rend3-framework/Cargo.toml b/rend3-framework/Cargo.toml index 0ed672f3..9e7b94a0 100644 --- a/rend3-framework/Cargo.toml +++ b/rend3-framework/Cargo.toml @@ -21,7 +21,7 @@ profiling = { version = "1", default-features = false } rend3 = { version = "0.3.0", path = "../rend3" } rend3-routine = { version = "0.3.0", path = "../rend3-routine" } thiserror = { version = "1" } -winit = "0.28" +winit = "0.29" wgpu = "0.18.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies]