Merge pull request #340 from waywardmonkeys/use-naga-release-crate

vello_shaders: Use naga 0.12, not git rev.
This commit is contained in:
Bruce Mitchener 2023-07-13 23:03:09 +07:00 committed by GitHub
commit b37b5a3ef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"