From eb1d4be36ad46c0a544f077175b95a391c48dbf8 Mon Sep 17 00:00:00 2001 From: Arman Uguray Date: Wed, 29 Mar 2023 11:20:15 -0700 Subject: [PATCH] [vello_shaders] Pin naga dependency --- vello_shaders/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vello_shaders/Cargo.toml b/vello_shaders/Cargo.toml index 72217a8..d3969ef 100644 --- a/vello_shaders/Cargo.toml +++ b/vello_shaders/Cargo.toml @@ -10,10 +10,10 @@ wgsl = [] msl = [] [dependencies] -naga = { git = "https://github.com/gfx-rs/naga", features = ["wgsl-in", "msl-out", "validate"], optional = true } +naga = { git = "https://github.com/gfx-rs/naga", rev = "53d62b9", 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", features = ["wgsl-in", "msl-out", "validate"] } +naga = { git = "https://github.com/gfx-rs/naga", rev = "53d62b9", features = ["wgsl-in", "msl-out", "validate"] } thiserror = "1.0.40"