Skip to content

Commit

Permalink
Really pin ahash version to 0.8.6
Browse files Browse the repository at this point in the history
Avoid the build_haser_simple_hash_one error introduced in ahash 0.8.7

See similar error/workaround at coral-xyz/anchor#2756

Change-Id: I771f91fb8c5f66a04b93502205f7d6599a0789d5
  • Loading branch information
hcindyl committed Jan 2, 2024
1 parent ae22959 commit 2a11c2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ TEST_TIMER_SERVICE = []
TEST_UART = []

[dependencies]
ahash = { version = "0.8.6", default-features = false, features = ["compile-time-rng"] }
ahash = { version = "=0.8.6", default-features = false, features = ["compile-time-rng"] }
const-random = { version = "0.1.17" }
crc = { version = "1.4.0", default-features = false }
hashbrown = { version = "0.14.2" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CONFIG_KERNEL_MCS = []
CONFIG_SMP_SUPPORT = []

[dependencies]
ahash = { version = "0.8.6", default-features = false, features = ["compile-time-rng"] }
ahash = { version = "=0.8.6", default-features = false, features = ["compile-time-rng"] }
const-random = { version = "0.1.17" }
crc = { version = "1.4.0", default-features = false, optional = true }
cstr_core = "0.2.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ CONFIG_PLAT_NEXUS = ["timer_support", "ml_support", "audio_support"]


[dependencies]
ahash = { version = "0.8.6", default-features = false, features = ["compile-time-rng"] }
ahash = { version = "=0.8.6", default-features = false, features = ["compile-time-rng"] }
bitvec = { version = "1.0", default-features = false }
cfg-if = "1.0"
const-random = { version = "0.1.17" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fake = ["cpio"]
sec = ["mailbox-driver"]

[dependencies]
ahash = { version = "0.8.6", default-features = false, features = ["compile-time-rng"] }
ahash = { version = "=0.8.6", default-features = false, features = ["compile-time-rng"] }
cantrip-memory-interface = { path = "../../MemoryManager/cantrip-memory-interface" }
cantrip-os-common = { path = "../../cantrip-os-common" }
cantrip-security-interface = { path = "../cantrip-security-interface" }
Expand Down

0 comments on commit 2a11c2a

Please sign in to comment.