From 02fd3b34ef15ecd8259f0c495c9e5e60c73d3267 Mon Sep 17 00:00:00 2001 From: Charlotte McElwain Date: Wed, 16 Jul 2025 12:36:04 -0700 Subject: [PATCH] Switch to upstream naga-oil. --- crates/bevy_render/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 2df66e2294..cc4ca4d758 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -127,7 +127,7 @@ wesl = { version = "0.1.2", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # Omit the `glsl` feature in non-WebAssembly by default. -naga_oil = { git = "https://github.com/tychedelia/naga_oil", branch = "wgpu-26", default-features = false, features = [ +naga_oil = { git = "https://github.com/bevyengine/naga_oil", default-features = false, features = [ "test_shader", ] } @@ -135,7 +135,7 @@ naga_oil = { git = "https://github.com/tychedelia/naga_oil", branch = "wgpu-26", proptest = "1" [target.'cfg(target_arch = "wasm32")'.dependencies] -naga_oil = { git = "https://github.com/tychedelia/naga_oil", branch = "wgpu-26" } +naga_oil = { git = "https://github.com/bevyengine/naga_oil" } js-sys = "0.3" web-sys = { version = "0.3.67", features = [ 'Blob',