From 920097abe0822c97d9384bc1b59f2800832af11e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 06:15:21 +0000 Subject: [PATCH] chore(deps): update wgpu requirement from 23.0 to 29.0 Updates the requirements on [wgpu](https://github.com/gfx-rs/wgpu) to permit the latest version. - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/wgpu/compare/wgpu-v23.0.0...v29.0.0) --- updated-dependencies: - dependency-name: wgpu dependency-version: 29.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- onedrop-engine/Cargo.toml | 2 +- onedrop-gui/Cargo.toml | 2 +- onedrop-renderer/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/onedrop-engine/Cargo.toml b/onedrop-engine/Cargo.toml index 42f4106..aa9586a 100644 --- a/onedrop-engine/Cargo.toml +++ b/onedrop-engine/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1.0" pollster = "0.3" # Graphics -wgpu = "23.0" +wgpu = "29.0" # Logging log = "0.4" diff --git a/onedrop-gui/Cargo.toml b/onedrop-gui/Cargo.toml index f8ca1bc..3cd61ba 100644 --- a/onedrop-gui/Cargo.toml +++ b/onedrop-gui/Cargo.toml @@ -18,7 +18,7 @@ onedrop-renderer = { path = "../onedrop-renderer" } # Window and events winit = "0.30" -wgpu = "23.0" +wgpu = "29.0" # Logging env_logger = "0.11" diff --git a/onedrop-renderer/Cargo.toml b/onedrop-renderer/Cargo.toml index e00a6be..c75c1f7 100644 --- a/onedrop-renderer/Cargo.toml +++ b/onedrop-renderer/Cargo.toml @@ -8,7 +8,7 @@ description = "GPU rendering pipeline for Milkdrop visualizations using wgpu" [dependencies] # GPU rendering -wgpu = "23.0" +wgpu = "29.0" bytemuck = { version = "1.14", features = ["derive"] } # Math