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,11 +7,11 @@ edition = { workspace = true }
portable = ["types/portable"]
[dependencies]
alloy-network = "1.0"
alloy-network = { workspace = true }
alloy-primitives = { workspace = true }
alloy-provider = "1.0"
alloy-provider = { workspace = true }
alloy-rpc-types-eth = { workspace = true }
alloy-signer-local = "1.0"
alloy-signer-local = { workspace = true }
async-channel = { workspace = true }
deposit_contract = { workspace = true }
execution_layer = { workspace = true }