lighthouse/beacon_node/eth2-libp2p/Cargo.toml

29 lines
868 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]
2019-06-07 23:44:27 +00:00
clap = "2.32.0"
2019-07-01 06:38:42 +00:00
#SigP repository
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "be5710bbde69d8c5be732c13ba64239e2f370a7b" }
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "be5710bbde69d8c5be732c13ba64239e2f370a7b", features = ["serde"] }
types = { path = "../../eth2/types" }
2019-06-07 23:44:27 +00:00
serde = "1.0"
serde_derive = "1.0"
eth2_ssz = { path = "../../eth2/utils/ssz" }
eth2_ssz_derive = { path = "../../eth2/utils/ssz_derive" }
slog = { version = "^2.4.1" , features = ["max_level_trace"] }
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"
2019-07-01 06:38:42 +00:00
dirs = "2.0.1"
2019-07-09 05:44:23 +00:00
tokio-io = "0.1.12"
smallvec = "0.6.10"
fnv = "1.0.6"
unsigned-varint = "0.2.2"
2019-07-15 07:07:23 +00:00
bytes = "0.4.12"