2019-03-04 05:39:37 +00:00
|
|
|
[package]
|
2019-03-20 04:09:24 +00:00
|
|
|
name = "eth2-libp2p"
|
2019-03-04 05:39:37 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-10 16:13:54 +00:00
|
|
|
hex = "0.3"
|
2019-11-25 04:48:24 +00:00
|
|
|
# rust-libp2p is presently being sourced from a Sigma Prime fork of the
|
|
|
|
# `libp2p/rust-libp2p` repository.
|
2020-01-31 07:57:20 +00:00
|
|
|
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "49c95c4c4242f1c9f08558a3daac5e9ecac290d5" }
|
|
|
|
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "49c95c4c4242f1c9f08558a3daac5e9ecac290d5", features = ["serde"] }
|
2019-03-08 01:15:57 +00:00
|
|
|
types = { path = "../../eth2/types" }
|
2019-10-30 01:22:18 +00:00
|
|
|
serde = "1.0.102"
|
|
|
|
serde_derive = "1.0.102"
|
|
|
|
eth2_ssz = "0.1.2"
|
|
|
|
eth2_ssz_derive = "0.1.0"
|
|
|
|
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
2019-03-06 12:31:08 +00:00
|
|
|
version = { path = "../version" }
|
2019-10-30 01:22:18 +00:00
|
|
|
tokio = "0.1.22"
|
|
|
|
futures = "0.1.29"
|
|
|
|
error-chain = "0.12.1"
|
|
|
|
dirs = "2.0.2"
|
2019-07-09 05:44:23 +00:00
|
|
|
fnv = "1.0.6"
|
2019-10-30 01:22:18 +00:00
|
|
|
unsigned-varint = "0.2.3"
|
|
|
|
lazy_static = "1.4.0"
|
2019-08-19 11:02:34 +00:00
|
|
|
lighthouse_metrics = { path = "../../eth2/utils/lighthouse_metrics" }
|
2019-11-27 01:47:46 +00:00
|
|
|
tokio-io-timeout = "0.3.1"
|
2019-12-06 03:13:43 +00:00
|
|
|
smallvec = "1.0.0"
|
2019-12-20 05:26:30 +00:00
|
|
|
lru = "0.4.3"
|
2020-02-19 11:12:25 +00:00
|
|
|
parking_lot = "0.9.0"
|
2019-12-20 05:26:30 +00:00
|
|
|
sha2 = "0.8.0"
|
|
|
|
base64 = "0.11.0"
|
2019-11-27 01:47:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
slog-stdlog = "4.0.0"
|
|
|
|
slog-term = "2.4.2"
|
|
|
|
slog-async = "2.3.0"
|
2020-03-02 02:35:20 +00:00
|
|
|
tempdir = "0.3"
|