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 }