Files
lighthouse/beacon_node/eth1/Cargo.toml
2020-04-17 17:29:22 +10:00

33 lines
977 B
TOML

[package]
name = "eth1"
version = "0.2.0"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
[dev-dependencies]
eth1_test_rig = { path = "../../tests/eth1_test_rig" }
environment = { path = "../../lighthouse/environment" }
toml = "^0.5"
web3 = "0.8.0"
sloggers = "0.3.4"
[dependencies]
reqwest = "0.10"
futures = {version = "0.3", features = ["compat"]}
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
hex = "0.3"
types = { path = "../../eth2/types"}
merkle_proof = { path = "../../eth2/utils/merkle_proof"}
eth2_ssz = { path = "../../eth2/utils/ssz"}
eth2_ssz_derive = "0.1.0"
tree_hash = { path = "../../eth2/utils/tree_hash"}
eth2_hashing = { path = "../../eth2/utils/eth2_hashing"}
parking_lot = "0.7"
slog = "^2.2.3"
tokio = { version = "0.2", features = ["full"] }
state_processing = { path = "../../eth2/state_processing" }
libflate = "0.1"
lighthouse_metrics = { path = "../../eth2/utils/lighthouse_metrics"}
lazy_static = "1.4.0"