2021-09-29 22:14:15 +00:00
|
|
|
[package]
|
|
|
|
name = "execution_layer"
|
|
|
|
version = "0.1.0"
|
2022-02-25 00:10:17 +00:00
|
|
|
edition = "2021"
|
2021-09-29 22:14:15 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
types = { path = "../../consensus/types"}
|
|
|
|
tokio = { version = "1.10.0", features = ["full"] }
|
|
|
|
async-trait = "0.1.51"
|
|
|
|
slog = "2.5.2"
|
|
|
|
futures = "0.3.7"
|
|
|
|
sensitive_url = { path = "../../common/sensitive_url" }
|
|
|
|
reqwest = { version = "0.11.0", features = ["json","stream"] }
|
2021-11-29 22:32:53 +00:00
|
|
|
eth2_serde_utils = "0.1.1"
|
2021-09-29 22:14:15 +00:00
|
|
|
serde_json = "1.0.58"
|
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
2022-04-04 00:26:16 +00:00
|
|
|
warp = { version = "0.3.2", features = ["tls"] }
|
2022-03-08 06:46:24 +00:00
|
|
|
jsonwebtoken = "8"
|
2021-09-29 22:14:15 +00:00
|
|
|
environment = { path = "../../lighthouse/environment" }
|
|
|
|
bytes = "1.1.0"
|
|
|
|
task_executor = { path = "../../common/task_executor" }
|
|
|
|
hex = "0.4.2"
|
2022-06-29 09:07:09 +00:00
|
|
|
eth2_ssz = "0.4.1"
|
2021-11-29 03:57:54 +00:00
|
|
|
eth2_ssz_types = "0.2.2"
|
2022-06-29 09:07:09 +00:00
|
|
|
eth2 = { path = "../../common/eth2" }
|
|
|
|
state_processing = { path = "../../consensus/state_processing" }
|
2022-10-26 19:15:26 +00:00
|
|
|
superstruct = "0.6.0"
|
2021-12-22 06:17:14 +00:00
|
|
|
lru = "0.7.1"
|
2021-09-29 22:14:15 +00:00
|
|
|
exit-future = "0.2.0"
|
2021-11-29 03:57:54 +00:00
|
|
|
tree_hash = "0.4.1"
|
2021-09-29 22:14:15 +00:00
|
|
|
tree_hash_derive = { path = "../../consensus/tree_hash_derive"}
|
2022-04-04 00:26:16 +00:00
|
|
|
parking_lot = "0.12.0"
|
2021-10-06 10:21:21 +00:00
|
|
|
slot_clock = { path = "../../common/slot_clock" }
|
2022-03-08 06:46:24 +00:00
|
|
|
tempfile = "3.1.0"
|
2022-04-04 00:26:16 +00:00
|
|
|
rand = "0.8.5"
|
2022-03-08 06:46:24 +00:00
|
|
|
zeroize = { version = "1.4.2", features = ["zeroize_derive"] }
|
2022-03-09 00:42:05 +00:00
|
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
|
2022-04-01 00:58:59 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-10-28 05:40:06 +00:00
|
|
|
ethers-core = "0.17.0"
|
2022-07-01 01:15:19 +00:00
|
|
|
builder_client = { path = "../builder_client" }
|
2022-07-21 05:45:37 +00:00
|
|
|
fork_choice = { path = "../../consensus/fork_choice" }
|
2022-10-28 05:40:06 +00:00
|
|
|
mev-build-rs = { git = "https://github.com/ralexstokes/mev-rs", rev = "6c99b0fbdc0427b1625469d2e575303ce08de5b8" }
|
|
|
|
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "a8110af76d97bf2bf27fb987a671808fcbdf1834" }
|
|
|
|
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "cb08f1" }
|
2022-08-24 23:34:56 +00:00
|
|
|
tokio-stream = { version = "0.1.9", features = [ "sync" ] }
|
2022-08-19 04:27:23 +00:00
|
|
|
strum = "0.24.0"
|