Skip to content

Commit

Permalink
Fix naga release
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jan 17, 2024
1 parent 8b2098b commit 7eac4ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion naga/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ criterion = { version = "0.5", features = [] }
bincode = "1"
diff = "0.1"
env_logger = "0.10"
hlsl-snapshots = { version = "0.1.0", path = "./hlsl-snapshots" }
# This _cannot_ have a version specified. If it does, crates.io will look
# for a version of the package on crates when we publish naga. Path dependencies
# are allowed through though.
hlsl-snapshots = { path = "./hlsl-snapshots" }
# Require at least version 0.7.1 of ron, this version changed how floating points are
# serialized by forcing them to always have the decimal part, this makes it backwards
# incompatible with our tests because we do a syntatic diff and not a semantic one.
Expand Down

0 comments on commit 7eac4ce

Please sign in to comment.