Clarify alloy dependencies (#8550)

Previously, we had a pinned version of `alloy` to fix some crate compatibility issues we encountered during the migration away from `ethers`. Now that the migration is complete we should remove the pin. This also updates alloy crates to their latest versions.


Co-Authored-By: Mac L <mjladson@pm.me>
This commit is contained in:
Mac L
2025-12-09 10:03:02 +04:00
committed by GitHub
parent 7bfcc03520
commit 77d58437da
4 changed files with 47 additions and 43 deletions

View File

@@ -7,8 +7,8 @@ edition = { workspace = true }
build = "build.rs"
[dependencies]
alloy-dyn-abi = "1.4"
alloy-json-abi = "1.4"
alloy-dyn-abi = { workspace = true }
alloy-json-abi = { workspace = true }
alloy-primitives = { workspace = true }
ethereum_ssz = { workspace = true }
serde_json = { workspace = true }