2022-08-29 17:31:17 +00:00
|
|
|
[package]
|
|
|
|
name = "client"
|
2023-01-20 00:23:06 +00:00
|
|
|
version = "0.1.3"
|
2022-08-29 17:31:17 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
eyre = "0.6.8"
|
|
|
|
serde = { version = "1.0.143", features = ["derive"] }
|
|
|
|
hex = "0.4.3"
|
2022-11-03 01:48:18 +00:00
|
|
|
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "cb08f18ca919cc1b685b861d0fa9e2daabe89737" }
|
2022-12-04 20:28:44 +00:00
|
|
|
ethers = "1.0.2"
|
2022-08-29 17:31:17 +00:00
|
|
|
jsonrpsee = { version = "0.15.1", features = ["full"] }
|
|
|
|
futures = "0.3.23"
|
2022-09-09 01:34:14 +00:00
|
|
|
log = "0.4.17"
|
2022-11-12 00:41:37 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-08-29 17:31:17 +00:00
|
|
|
|
|
|
|
common = { path = "../common" }
|
|
|
|
consensus = { path = "../consensus" }
|
|
|
|
execution = { path = "../execution" }
|
2022-08-29 20:54:58 +00:00
|
|
|
config = { path = "../config" }
|