468015f9bb
* Add interop chain spec and rename chain_id * Add ability to connect to raw libp2p nodes * Adds Identify protocol, clean up RPC protocol name handling * Update to latest libp2p, gossipsub improvements * Updates to latest interop branch. - Shifts decoding of objects into message handler. - Updates to latest interop gossipsub. - Adds interop spec constant. * Configuration updates allow for verbosity CLI flag and spec constants * Update submodules to master * Correct minimal chainspec modifications * Duplication of validator polls are no longer fatal * Apply PR suggestions
29 lines
805 B
TOML
29 lines
805 B
TOML
[package]
|
|
name = "eth2-libp2p"
|
|
version = "0.1.0"
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.32.0"
|
|
#SigP repository
|
|
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "b0d3cf7b4b0fa6c555b64dbdd110673a05457abd" }
|
|
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "b0d3cf7b4b0fa6c555b64dbdd110673a05457abd", features = ["serde"] }
|
|
types = { path = "../../eth2/types" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
eth2_ssz = "0.1"
|
|
eth2_ssz_derive = "0.1"
|
|
slog = { version = "^2.4.1" , features = ["max_level_trace"] }
|
|
version = { path = "../version" }
|
|
tokio = "0.1.16"
|
|
futures = "0.1.25"
|
|
error-chain = "0.12.0"
|
|
tokio-timer = "0.2.10"
|
|
dirs = "2.0.1"
|
|
tokio-io = "0.1.12"
|
|
smallvec = "0.6.10"
|
|
fnv = "1.0.6"
|
|
unsigned-varint = "0.2.2"
|
|
bytes = "0.4.12"
|