2022-08-29 20:54:58 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "config"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
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-11-02 19:26:15 +00:00
|
|
|
ethers = "1.0.0"
|
2022-10-05 17:52:07 +00:00
|
|
|
figment = { version = "0.10.7", features = ["toml", "env"] }
|
|
|
|
thiserror = "1.0.37"
|
2022-08-29 20:54:58 +00:00
|
|
|
|
|
|
|
common = { path = "../common" }
|