You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/11/09 19:26:33 UTC

[GitHub] [arrow-rs] tustvold commented on a diff in pull request #3048: fix: pin ahash to 0.8.0

tustvold commented on code in PR #3048:
URL: https://github.com/apache/arrow-rs/pull/3048#discussion_r1018332641


##########
arrow/Cargo.toml:
##########
@@ -38,10 +38,10 @@ path = "src/lib.rs"
 bench = false
 
 [target.'cfg(target_arch = "wasm32")'.dependencies]
-ahash = { version = "0.8", default-features = false, features = ["compile-time-rng"] }
+ahash = { version = "0.8.0", default-features = false, features = ["compile-time-rng"] }

Review Comment:
   ```suggestion
   ahash = { version = "=0.8.0", default-features = false, features = ["compile-time-rng"] }
   ```
   
   FYI you will need an exact version pin, cargo applies semver compatibility by default



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org