mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-07 22:27:21 +00:00
c66c191b68
* Extract gossiping system from network * Finish porting GRANDPA tests * Try put correct engine ID * Fix messages encoding * Fix communication tests * Use a threads pool to spawn stuff * Fix compilation everywhere * Fix bad merge conflict * Remove dependency on async-std * Apply suggestions from code review Co-Authored-By: Robert Habermeier <rphmeier@gmail.com> * More suggestions * Remove network startup GP future * Update to futures_timer * adjust wait_when_behind test * Pass correct Roles after handshake * Revert "adjust wait_when_behind test" This reverts commit 23cb3a0a6d25ed732c2cd648607bc44ef2ab0919. * Crate root documentation * Remove MessageRecipient * Address concerns * Fix more concerns * Forgot Cargo.lock
19 lines
606 B
TOML
19 lines
606 B
TOML
[package]
|
|
description = "Gossiping for the Substrate network protocol"
|
|
name = "sc-network-gossip"
|
|
version = "2.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures01 = { package = "futures", version = "0.1.29" }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
futures-timer = "0.4.0"
|
|
lru = "0.1.2"
|
|
libp2p = { version = "0.13.0", default-features = false, features = ["libp2p-websocket"] }
|
|
network = { package = "sc-network", path = "../network" }
|
|
parking_lot = "0.9.0"
|
|
sp-runtime = { path = "../../primitives/runtime" }
|