Update Naga to 85056524 (2022-4-18).

This commit is contained in:
Jim Blandy 2022-04-18 13:09:00 -07:00 committed by Dzmitry Malyshau
parent 06ee8a6862
commit 6d7c092dad
4 changed files with 8 additions and 14 deletions

10
Cargo.lock generated
View File

@ -1032,7 +1032,7 @@ dependencies = [
[[package]] [[package]]
name = "naga" name = "naga"
version = "0.8.0" version = "0.8.0"
source = "git+https://github.com/gfx-rs/naga?rev=0e2bb019#0e2bb0194b029c388a70403d36a82d5fc774d307" source = "git+https://github.com/gfx-rs/naga?rev=85056524#850565243d1d0d03215f13246c94d63e1d4c51cd"
dependencies = [ dependencies = [
"bit-set", "bit-set",
"bitflags", "bitflags",
@ -1048,7 +1048,7 @@ dependencies = [
"spirv", "spirv",
"termcolor", "termcolor",
"thiserror", "thiserror",
"unicode-id", "unicode-xid",
] ]
[[package]] [[package]]
@ -1726,12 +1726,6 @@ dependencies = [
"serde", "serde",
] ]
[[package]]
name = "unicode-id"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69fe8d9274f490a36442acb4edfd0c4e473fdfc6a8b5cd32f28a0235761aedbe"
[[package]] [[package]]
name = "unicode-segmentation" name = "unicode-segmentation"
version = "1.8.0" version = "1.8.0"

View File

@ -40,7 +40,7 @@ thiserror = "1"
[dependencies.naga] [dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
features = ["span", "validate", "wgsl-in"] features = ["span", "validate", "wgsl-in"]

View File

@ -91,14 +91,14 @@ js-sys = { version = "0.3" }
[dependencies.naga] [dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
# DEV dependencies # DEV dependencies
[dev-dependencies.naga] [dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
features = ["wgsl-in"] features = ["wgsl-in"]

View File

@ -139,20 +139,20 @@ env_logger = "0.9"
[dependencies.naga] [dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
optional = true optional = true
# used to test all the example shaders # used to test all the example shaders
[dev-dependencies.naga] [dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
features = ["wgsl-in"] features = ["wgsl-in"]
[target.'cfg(target_arch = "wasm32")'.dependencies.naga] [target.'cfg(target_arch = "wasm32")'.dependencies.naga]
git = "https://github.com/gfx-rs/naga" git = "https://github.com/gfx-rs/naga"
rev = "0e2bb019" rev = "85056524"
#version = "0.8" #version = "0.8"
features = ["wgsl-out"] features = ["wgsl-out"]