Skip to content

Commit

Permalink
Merge pull request #340 from waywardmonkeys/use-naga-release-crate
Browse files Browse the repository at this point in the history
vello_shaders: Use naga 0.12, not git rev.
  • Loading branch information
waywardmonkeys authored Jul 13, 2023
2 parents 929d727 + 75b27d6 commit b37b5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/shaders/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit b37b5a3

Please sign in to comment.