Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: pin ahash to 0.8.0
0.8.1 has a bug tkaitchuck/aHash#143
  • Loading branch information
mattbonnell authored Nov 8, 2022
commit ef8aebc01d54773ce99823d4c4d54751e603ccb7
4 changes: 2 additions & 2 deletions arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ahash = { version = "0.8.0", default-features = false, features = ["compile-time-rng"] }
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


[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
ahash = { version = "0.8.0", default-features = false, features = ["runtime-rng"] }

[dependencies]
arrow-buffer = { version = "26.0.0", path = "../arrow-buffer" }
Expand Down