From c4ddc6a8897b622d96bb973d51e1db0772675f31 Mon Sep 17 00:00:00 2001 From: ByteYue Date: Mon, 3 Aug 2026 15:46:17 +0800 Subject: [PATCH] fix(deps): require alloy-trie 0.9.5 The nested trie node cache uses const mutation that requires the trivially droppable RlpNode implementation introduced in alloy-trie 0.9.5. Raising the minimum version prevents downstream lockfiles from selecting 0.9.4 and failing on the declared Rust 1.93 toolchain. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ce9d88cdc..05414cc91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -514,7 +514,7 @@ alloy-eip2124 = { version = "0.2.0", default-features = false } alloy-eip7928 = { version = "0.4.0", default-features = false, features = ["rlp"] } alloy-evm = { version = "0.36.0", default-features = false } alloy-rlp = { version = "0.3.13", default-features = false, features = ["core-net"] } -alloy-trie = { version = "0.9.4", default-features = false } +alloy-trie = { version = "0.9.5", default-features = false } alloy-hardforks = "0.4.7"