0513559252
* Fix syncing bugs by recursively attempting to process parents in the import queue, change BlockRootsIterator * Swap from crossbeam channel to tokio mpsc * Recursion fix * Remove exess block processing * Fix network lag, correct attestation topic * Correct network poll logic * Overhaul of SimpleSync and modify BlockRootsIterator to return start_slot * Fix bug in tests relating to StateRootsIterator * Remove old, commented-out heartbeat code. * Tidy docs on import queue enum * Change source logging msg in simple sync * Rename function parameter in simple sync * Use `BestBlockRootsIterator` in `reduced_tree` * Update comments for `BestBlockRootsIterator` * Fix duplicate dep in cargo.toml
25 lines
816 B
TOML
25 lines
816 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 = "be5710bbde69d8c5be732c13ba64239e2f370a7b" }
|
|
enr = { git = "https://github.com/SigP/rust-libp2p/", rev = "be5710bbde69d8c5be732c13ba64239e2f370a7b", 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"] }
|
|
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"
|