diff --git a/Cargo.lock b/Cargo.lock index 9676b36150..e6a149110b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1032,7 +1032,7 @@ dependencies = [ [[package]] name = "naga" version = "0.8.0" -source = "git+https://github.com/gfx-rs/naga?rev=1720725#172072501490c877d1efddeb653e0a74107b900c" +source = "git+https://github.com/gfx-rs/naga?rev=0e2bb019#0e2bb0194b029c388a70403d36a82d5fc774d307" dependencies = [ "bit-set", "bitflags", @@ -1046,7 +1046,9 @@ dependencies = [ "rustc-hash", "serde", "spirv", + "termcolor", "thiserror", + "unicode-id", ] [[package]] @@ -1724,6 +1726,12 @@ dependencies = [ "serde", ] +[[package]] +name = "unicode-id" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69fe8d9274f490a36442acb4edfd0c4e473fdfc6a8b5cd32f28a0235761aedbe" + [[package]] name = "unicode-segmentation" version = "1.8.0" diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 7186d22206..908a8ac34c 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -40,7 +40,7 @@ thiserror = "1" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" features = ["span", "validate", "wgsl-in"] diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index 5ed3a22e6e..fc4260a53f 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -91,14 +91,14 @@ js-sys = { version = "0.3" } [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" # DEV dependencies [dev-dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" features = ["wgsl-in"] diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 7a954e76fd..ede85ac27a 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -139,20 +139,20 @@ env_logger = "0.9" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" optional = true # used to test all the example shaders [dev-dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" features = ["wgsl-in"] [target.'cfg(target_arch = "wasm32")'.dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "1720725" +rev = "0e2bb019" #version = "0.8" features = ["wgsl-out"]