Really pin ahash version to 0.8.6
Avoid the build_haser_simple_hash_one error introduced in ahash 0.8.7
See similar error/workaround at https://github.com/coral-xyz/anchor/pull/2756
Change-Id: I771f91fb8c5f66a04b93502205f7d6599a0789d5
diff --git a/apps/system/components/DebugConsole/cantrip-shell/Cargo.toml b/apps/system/components/DebugConsole/cantrip-shell/Cargo.toml
index e25fab0..1db27ce 100644
--- a/apps/system/components/DebugConsole/cantrip-shell/Cargo.toml
+++ b/apps/system/components/DebugConsole/cantrip-shell/Cargo.toml
@@ -62,7 +62,7 @@
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" }
diff --git a/apps/system/components/ProcessManager/cantrip-proc-manager/Cargo.toml b/apps/system/components/ProcessManager/cantrip-proc-manager/Cargo.toml
index 43aac5b..d6a76d9 100644
--- a/apps/system/components/ProcessManager/cantrip-proc-manager/Cargo.toml
+++ b/apps/system/components/ProcessManager/cantrip-proc-manager/Cargo.toml
@@ -33,7 +33,7 @@
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"
diff --git a/apps/system/components/SDKRuntime/cantrip-sdk-runtime/Cargo.toml b/apps/system/components/SDKRuntime/cantrip-sdk-runtime/Cargo.toml
index 351b2a7..0995afe 100644
--- a/apps/system/components/SDKRuntime/cantrip-sdk-runtime/Cargo.toml
+++ b/apps/system/components/SDKRuntime/cantrip-sdk-runtime/Cargo.toml
@@ -32,7 +32,7 @@
[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" }
diff --git a/apps/system/components/SecurityCoordinator/cantrip-security-coordinator/Cargo.toml b/apps/system/components/SecurityCoordinator/cantrip-security-coordinator/Cargo.toml
index 03ebbd9..ef779ab 100644
--- a/apps/system/components/SecurityCoordinator/cantrip-security-coordinator/Cargo.toml
+++ b/apps/system/components/SecurityCoordinator/cantrip-security-coordinator/Cargo.toml
@@ -23,7 +23,7 @@
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" }