2a9c718a20
* Initial work on removing libp2p lock * Removes lock from libp2p service * Completed network lock removal * Correct network termination future * Correct fmt issues * Remove Drop implementation for network service * Address reviewers suggestions * Fix dht persistence test (#844) * Fix persistence test * Block until dht is persisted * Fix libp2p test * Correct test ordering check * Remove expensive tests from debug testing Co-authored-by: Pawan Dhananjay <pawandhananjay@gmail.com>
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "eth2-libp2p"
|
|
version = "0.1.0"
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex = "0.3"
|
|
# rust-libp2p is presently being sourced from a Sigma Prime fork of the
|
|
# `libp2p/rust-libp2p` repository.
|
|
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "49c95c4c4242f1c9f08558a3daac5e9ecac290d5" }
|
|
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "49c95c4c4242f1c9f08558a3daac5e9ecac290d5", features = ["serde"] }
|
|
types = { path = "../../eth2/types" }
|
|
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"] }
|
|
version = { path = "../version" }
|
|
tokio = "0.1.22"
|
|
futures = "0.1.29"
|
|
error-chain = "0.12.1"
|
|
dirs = "2.0.2"
|
|
fnv = "1.0.6"
|
|
unsigned-varint = "0.2.3"
|
|
lazy_static = "1.4.0"
|
|
lighthouse_metrics = { path = "../../eth2/utils/lighthouse_metrics" }
|
|
tokio-io-timeout = "0.3.1"
|
|
smallvec = "1.0.0"
|
|
lru = "0.4.3"
|
|
parking_lot = "0.9.0"
|
|
sha2 = "0.8.0"
|
|
base64 = "0.11.0"
|
|
|
|
[dev-dependencies]
|
|
slog-stdlog = "4.0.0"
|
|
slog-term = "2.4.2"
|
|
slog-async = "2.3.0"
|