From 7b5bed084a46f99143fa00411060213585745a86 Mon Sep 17 00:00:00 2001 From: Charlotte McElwain Date: Fri, 18 Oct 2024 08:44:40 -0700 Subject: [PATCH] wgpu 23 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cfaf4d6..3d1c178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ prune = [] allow_deprecated = [] [dependencies] -naga = { version = "22.1", features = ["wgsl-in", "wgsl-out"] } +naga = { git = "https://github.com/gfx-rs/wgpu", branch = "trunk", features = ["wgsl-in", "wgsl-out"] } tracing = "0.1" regex = "1.8" regex-syntax = "0.8" @@ -31,6 +31,6 @@ once_cell = "1.17.0" indexmap = "2" [dev-dependencies] -wgpu = { version = "22", features = ["naga-ir"] } +wgpu = { git = "https://github.com/gfx-rs/wgpu", branch = "trunk", features = ["naga-ir"] } futures-lite = "1" tracing-subscriber = { version = "0.3", features = ["std", "fmt"] }