2022-02-17 21:47:06 +00:00
|
|
|
[package]
|
|
|
|
name = "execution_engine_integration"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tempfile = "3.1.0"
|
|
|
|
serde_json = "1.0.58"
|
|
|
|
task_executor = { path = "../../common/task_executor" }
|
|
|
|
tokio = { version = "1.14.0", features = ["rt-multi-thread", "macros"] }
|
|
|
|
futures = "0.3.7"
|
|
|
|
exit-future = "0.2.0"
|
|
|
|
environment = { path = "../../lighthouse/environment" }
|
|
|
|
execution_layer = { path = "../../beacon_node/execution_layer" }
|
|
|
|
sensitive_url = { path = "../../common/sensitive_url" }
|
|
|
|
types = { path = "../../consensus/types" }
|
|
|
|
unused_port = { path = "../../common/unused_port" }
|
2023-01-09 03:11:59 +00:00
|
|
|
ethers-core = "1.0.2"
|
|
|
|
ethers-providers = "1.0.2"
|
2022-07-18 01:51:36 +00:00
|
|
|
deposit_contract = { path = "../../common/deposit_contract" }
|
|
|
|
reqwest = { version = "0.11.0", features = ["json"] }
|
|
|
|
hex = "0.4.2"
|
2022-07-21 05:45:37 +00:00
|
|
|
fork_choice = { path = "../../consensus/fork_choice" }
|
2023-02-16 23:34:33 +00:00
|
|
|
logging = { path = "../../common/logging" }
|