2022-08-29 17:31:17 +00:00
|
|
|
[package]
|
|
|
|
name = "execution"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
eyre = "0.6.8"
|
|
|
|
serde = { version = "1.0.143", features = ["derive"] }
|
2022-09-08 21:46:48 +00:00
|
|
|
serde_json = "1.0.85"
|
2022-08-29 17:31:17 +00:00
|
|
|
hex = "0.4.3"
|
2022-11-03 01:48:18 +00:00
|
|
|
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "cb08f18ca919cc1b685b861d0fa9e2daabe89737" }
|
2022-08-29 17:31:17 +00:00
|
|
|
blst = "0.3.10"
|
2022-11-02 19:26:15 +00:00
|
|
|
ethers = "1.0.0"
|
2022-11-03 23:36:14 +00:00
|
|
|
revm = "2.1.0"
|
2022-08-29 17:31:17 +00:00
|
|
|
bytes = "1.2.1"
|
|
|
|
futures = "0.3.23"
|
|
|
|
toml = "0.5.9"
|
2022-11-03 01:48:18 +00:00
|
|
|
triehash-ethereum = { git = "https://github.com/openethereum/parity-ethereum", rev = "55c90d4016505317034e3e98f699af07f5404b63" }
|
2022-09-08 21:46:48 +00:00
|
|
|
async-trait = "0.1.57"
|
2022-09-22 19:40:06 +00:00
|
|
|
log = "0.4.17"
|
2022-09-29 23:35:43 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-11-03 00:32:22 +00:00
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
2022-08-29 17:31:17 +00:00
|
|
|
|
|
|
|
common = { path = "../common" }
|
|
|
|
consensus = { path = "../consensus" }
|