From 75b27d65f5808dad44f15ce3b6a314b802d30e3f Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 5 Jul 2023 10:18:50 +0700 Subject: [PATCH] vello_shaders: Use naga 0.12, not git rev. The git revision being used was from `0.11` while the current release is `0.12`. `0.12` is used in `wgpu`, so this lets us have a single `naga` crate being built. --- crates/shaders/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/shaders/Cargo.toml b/crates/shaders/Cargo.toml index d3969efc6..70e859be7 100644 --- a/crates/shaders/Cargo.toml +++ b/crates/shaders/Cargo.toml @@ -10,10 +10,10 @@ wgsl = [] msl = [] [dependencies] -naga = { git = "https://github.com/gfx-rs/naga", rev = "53d62b9", features = ["wgsl-in", "msl-out", "validate"], optional = true } +naga = { version = "0.12", features = ["wgsl-in", "msl-out", "validate"], optional = true } thiserror = { version = "1.0.40", optional = true } [build-dependencies] -naga = { git = "https://github.com/gfx-rs/naga", rev = "53d62b9", features = ["wgsl-in", "msl-out", "validate"] } +naga = { version = "0.12", features = ["wgsl-in", "msl-out", "validate"] } thiserror = "1.0.40"