lighthouse/beacon_node/eth2-libp2p/Cargo.toml

23 lines
634 B
TOML
Raw Normal View History

[package]
2019-03-20 04:09:24 +00:00
name = "eth2-libp2p"
version = "0.1.0"
authors = ["Age Manning <Age@AgeManning.com>"]
edition = "2018"
[dependencies]
beacon_chain = { path = "../beacon_chain" }
2019-06-07 23:44:27 +00:00
clap = "2.32.0"
# SigP repository until PR is merged
2019-04-03 06:13:55 +00:00
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "fb852bcc2b9b3935555cc93930e913cbec2b0688" }
types = { path = "../../eth2/types" }
2019-06-07 23:44:27 +00:00
serde = "1.0"
serde_derive = "1.0"
2019-03-14 14:50:59 +00:00
ssz = { path = "../../eth2/utils/ssz" }
ssz_derive = { path = "../../eth2/utils/ssz_derive" }
slog = "2.4.1"
version = { path = "../version" }
tokio = "0.1.16"
futures = "0.1.25"
2019-03-12 06:28:11 +00:00
error-chain = "0.12.0"
2019-04-08 23:15:11 +00:00
tokio-timer = "0.2.10"