mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2024-12-26 05:27:22 +00:00
24 lines
830 B
TOML
24 lines
830 B
TOML
[package]
|
|
name = "eth2-libp2p"
|
|
version = "0.1.0"
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
beacon_chain = { path = "../beacon_chain" }
|
|
clap = "2.32.0"
|
|
# SigP repository
|
|
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "1c2aa97a338fc9dfd8e804cc47497fb9b8e7ad04" }
|
|
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "1c2aa97a338fc9dfd8e804cc47497fb9b8e7ad04", features = ["serde"] }
|
|
types = { path = "../../eth2/types" }
|
|
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", "release_max_level_trace"] }
|
|
version = { path = "../version" }
|
|
tokio = "0.1.16"
|
|
futures = "0.1.25"
|
|
error-chain = "0.12.0"
|
|
tokio-timer = "0.2.10"
|