a7da0677d5
## Issue Addressed This PR is a subset of the changes in #3134. Unstable will still not function correctly with the new builder spec once this is merged, #3134 should be used on testnets ## Proposed Changes - Removes redundancy in "builders" (servers implementing the builder spec) - Renames `payload-builder` flag to `builder` - Moves from old builder RPC API to new HTTP API, but does not implement the validator registration API (implemented in https://github.com/sigp/lighthouse/pull/3194) Co-authored-by: sean <seananderson33@gmail.com> Co-authored-by: realbigsean <sean@sigmaprime.io>
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "execution_layer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# 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"] }
|
|
eth2_serde_utils = "0.1.1"
|
|
serde_json = "1.0.58"
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
warp = { version = "0.3.2", features = ["tls"] }
|
|
jsonwebtoken = "8"
|
|
environment = { path = "../../lighthouse/environment" }
|
|
bytes = "1.1.0"
|
|
task_executor = { path = "../../common/task_executor" }
|
|
hex = "0.4.2"
|
|
eth2_ssz = "0.4.1"
|
|
eth2_ssz_types = "0.2.2"
|
|
eth2 = { path = "../../common/eth2" }
|
|
state_processing = { path = "../../consensus/state_processing" }
|
|
lru = "0.7.1"
|
|
exit-future = "0.2.0"
|
|
tree_hash = "0.4.1"
|
|
tree_hash_derive = { path = "../../consensus/tree_hash_derive"}
|
|
parking_lot = "0.12.0"
|
|
slot_clock = { path = "../../common/slot_clock" }
|
|
tempfile = "3.1.0"
|
|
rand = "0.8.5"
|
|
zeroize = { version = "1.4.2", features = ["zeroize_derive"] }
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
|
|
lazy_static = "1.4.0"
|
|
ethers-core = { git = "https://github.com/gakonst/ethers-rs", rev = "02ad93a1cfb7b62eb051c77c61dc4c0218428e4a" }
|
|
builder_client = { path = "../builder_client" }
|