From 8a212a1ab34f6a8e6ca6acdd7fe43841814a7884 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 06:22:43 +0000 Subject: [PATCH] Update naga requirement from 26 to 27 Updates the requirements on [naga](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/naga-v26.0.0...naga-v27.0.3) --- updated-dependencies: - dependency-name: naga dependency-version: 27.0.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_shader/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 7b4fa6259f64b..c1c83daccafe3 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -93,7 +93,7 @@ wgpu = { version = "26", default-features = false, features = [ "naga-ir", "fragile-send-sync-non-atomic-wasm", ] } -naga = { version = "26", features = ["wgsl-in"] } +naga = { version = "27", features = ["wgsl-in"] } bytemuck = { version = "1.5", features = ["derive", "must_cast"] } downcast-rs = { version = "2", default-features = false, features = ["std"] } thiserror = { version = "2", default-features = false } diff --git a/crates/bevy_shader/Cargo.toml b/crates/bevy_shader/Cargo.toml index 9a14fc0184258..2761bea4ed61a 100644 --- a/crates/bevy_shader/Cargo.toml +++ b/crates/bevy_shader/Cargo.toml @@ -16,7 +16,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.18.0-dev" } # other wgpu-types = { version = "26", default-features = false } -naga = { version = "26", features = ["wgsl-in"] } +naga = { version = "27", features = ["wgsl-in"] } serde = { version = "1", features = ["derive"] } thiserror = { version = "2", default-features = false } wesl = { version = "0.2.0", optional = true }