mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
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>
30 lines
861 B
TOML
30 lines
861 B
TOML
[package]
|
|
name = "execution_engine_integration"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
portable = ["types/portable"]
|
|
|
|
[dependencies]
|
|
alloy-network = { workspace = true }
|
|
alloy-primitives = { workspace = true }
|
|
alloy-provider = { workspace = true }
|
|
alloy-rpc-types-eth = { workspace = true }
|
|
alloy-signer-local = { workspace = true }
|
|
async-channel = { workspace = true }
|
|
deposit_contract = { workspace = true }
|
|
execution_layer = { workspace = true }
|
|
fork_choice = { workspace = true }
|
|
futures = { workspace = true }
|
|
hex = { workspace = true }
|
|
logging = { workspace = true }
|
|
network_utils = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|
|
types = { workspace = true }
|