From 9b107237d010e275c8c146a4c4fcf5573a06c4b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 05:41:25 +0000 Subject: [PATCH] Update wgpu requirement from 22.0 to 23.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-v22.0.0...wgpu-v23.0.0) --- updated-dependencies: - dependency-name: wgpu dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/modor_graphics/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a9f5f33..5fdc71e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ syn = { version = "2.0", features = ["full"] } wasm-bindgen-futures = "0.4" wasm-bindgen-test = "0.3" web-sys = { version = "0.3", features = ["Location"] } -wgpu = "22.0" +wgpu = "23.0" winit = "0.30" modor = { version = "0.1.0", path = "crates/modor" } modor_derive = { version = "0.1.0", path = "crates/modor_derive" } diff --git a/crates/modor_graphics/Cargo.toml b/crates/modor_graphics/Cargo.toml index 41a0e626..483319f8 100644 --- a/crates/modor_graphics/Cargo.toml +++ b/crates/modor_graphics/Cargo.toml @@ -45,7 +45,7 @@ wgpu.workspace = true [target.'cfg(target_arch = "wasm32")'.dependencies] instant = { workspace = true, features = ["wasm-bindgen"] } web-sys.workspace = true -wgpu = { version = "22.0", default-features = false, features = ["webgl", "wgsl"] } +wgpu = { version = "23.0", default-features = false, features = ["webgl", "wgsl"] } [dev-dependencies] approx.workspace = true