mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 02:21:04 +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
44 lines
2.1 KiB
TOML
44 lines
2.1 KiB
TOML
[package]
|
|
name = "sc-finality-grandpa"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
fork-tree = { path = "../../utils/fork-tree" }
|
|
futures = "0.1.29"
|
|
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
|
|
futures-timer = "2.0.2"
|
|
log = "0.4.8"
|
|
parking_lot = "0.9.0"
|
|
rand = "0.7.2"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
consensus_common = { package = "sp-consensus", path = "../../primitives/consensus/common" }
|
|
primitives = { package = "sp-core", path = "../../primitives/core" }
|
|
sc-telemetry = { path = "../telemetry" }
|
|
keystore = { package = "sc-keystore", path = "../keystore" }
|
|
serde_json = "1.0.41"
|
|
client-api = { package = "sc-client-api", path = "../api" }
|
|
client = { package = "sc-client", path = "../" }
|
|
inherents = { package = "sp-inherents", path = "../../primitives/inherents" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
network = { package = "sc-network", path = "../network" }
|
|
network-gossip = { package = "sc-network-gossip", path = "../network-gossip" }
|
|
sp-finality-tracker = { path = "../../primitives/finality-tracker" }
|
|
fg_primitives = { package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
|
grandpa = { package = "finality-grandpa", version = "0.10.1", features = ["derive-codec"] }
|
|
|
|
[dev-dependencies]
|
|
grandpa = { package = "finality-grandpa", version = "0.10.1", features = ["derive-codec", "test-helpers"] }
|
|
network = { package = "sc-network", path = "../network" }
|
|
sc-network-test = { path = "../network/test" }
|
|
keyring = { package = "sp-keyring", path = "../../primitives/keyring" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test-utils/runtime/client"}
|
|
babe_primitives = { package = "sp-consensus-babe", path = "../../primitives/consensus/babe" }
|
|
state_machine = { package = "sp-state-machine", path = "../../primitives/state-machine" }
|
|
env_logger = "0.7.0"
|
|
tokio = "0.1.22"
|
|
tempfile = "3.1.0"
|
|
sp-api = { path = "../../primitives/api" }
|