Skip to content

Commit 8c928e2

Browse files
committed
Rebase.
1 parent 6660cf9 commit 8c928e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

crates/bevy_render/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ wgpu = { version = "26", default-features = false, features = [
100100
"naga-ir",
101101
"fragile-send-sync-non-atomic-wasm",
102102
] }
103-
naga = { version = "25", features = ["wgsl-in"] }
103+
naga = { version = "26", features = ["wgsl-in"] }
104104
bytemuck = { version = "1.5", features = ["derive", "must_cast"] }
105105
downcast-rs = { version = "2", default-features = false, features = ["std"] }
106106
thiserror = { version = "2", default-features = false }

crates/bevy_shader/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-dev" }
1616
bevy_platform = { path = "../bevy_platform", version = "0.17.0-dev" }
1717

1818
# other
19-
wgpu-types = { version = "25", default-features = false }
20-
naga = { version = "25", features = ["wgsl-in"] }
19+
wgpu-types = { version = "26", default-features = false }
20+
naga = { version = "26", features = ["wgsl-in"] }
2121
serde = { version = "1", features = ["derive"] }
2222
thiserror = { version = "2", default-features = false }
2323
wesl = { version = "0.1.2", optional = true }
@@ -26,12 +26,12 @@ tracing = { version = "0.1", default-features = false, features = ["std"] }
2626

2727
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2828
# Omit the `glsl` feature in non-WebAssembly by default.
29-
naga_oil = { version = "0.18", default-features = false, features = [
29+
naga_oil = { git = "https://github.com/bevyengine/naga_oil", default-features = false, features = [
3030
"test_shader",
3131
] }
3232

3333
[target.'cfg(target_arch = "wasm32")'.dependencies]
34-
naga_oil = { version = "0.18" }
34+
naga_oil = { git = "https://github.com/bevyengine/naga_oil" }
3535

3636
[features]
3737
shader_format_glsl = ["naga/glsl-in", "naga/wgsl-out", "naga_oil/glsl"]

0 commit comments

Comments
 (0)