helios/consensus/Cargo.toml

27 lines
649 B
TOML
Raw Normal View History

2022-08-29 17:31:17 +00:00
[package]
name = "consensus"
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"] }
serde_json = "1.0.85"
2022-08-29 17:31:17 +00:00
hex = "0.4.3"
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs" }
blst = "0.3.10"
ethers = "0.17.0"
bytes = "1.2.1"
toml = "0.5.9"
async-trait = "0.1.57"
log = "0.4.17"
chrono = "0.4.22"
thiserror = "1.0.37"
2022-08-29 17:31:17 +00:00
common = { path = "../common" }
2022-08-29 20:54:58 +00:00
config = { path = "../config" }