From 5729d54af47840d781a79dbf229c274d6d6fcbe6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Mar 2026 15:03:35 +0000 Subject: [PATCH] Update wgpu requirement from 28 to 29 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/v28.0.0...v29.0.0) --- updated-dependencies: - dependency-name: wgpu dependency-version: 29.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f149132..ba3a3a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ serde = { version = "1", features = ["derive"], optional = true } ndarray = { version = "0.17", optional = true } faer = { version = "0.24", optional = true } nalgebra = { version = "0.34", optional = true } -wgpu = { version = "28", optional = true } +wgpu = { version = "29", optional = true } bytemuck = { version = "1", features = ["derive"], optional = true } pollster = { version = "0.4", optional = true } cudarc = { version = "0.19", optional = true, features = ["cuda-version-from-build-system"] }