mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 20:21:03 +00:00
5896072b86
* Remove direct dependency of `sc-network` on `sc-network-light` * Move `WarpSyncProvider` trait and surrounding data structures into `sc-network-common` * Move `WarpSyncProvider` trait and surrounding data structures into `sc-network-common` * Create `sync` module in `sc-network-common`, create `ChainSync` trait there (not used yet), move a bunch of associated data structures from `sc-network-sync` * Switch from concrete implementation to `ChainSync` trait from `sc-network-common` * Introduce `OpaqueStateRequest`/`OpaqueStateResponse` to remove generics from `StateSync` trait * Introduce `OpaqueBlockRequest`/`OpaqueBlockResponse`, make `scheme` module of `sc-network-sync` private * Surface `sc-network-sync` into `sc-service` and make `sc-network` not depend on it anymore * Remove now unnecessary dependency from `sc-network` * Replace crate links with just text since dependencies are gone now * Remove `warp_sync` re-export from `sc-network-common` * Update copyright in network-related files * Address review comments about documentation * Apply review suggestion * Rename `extra_requests` module to `metrics` Co-authored-by: Bastian Köcher <info@kchr.de>
66 lines
2.9 KiB
TOML
66 lines
2.9 KiB
TOML
[package]
|
|
name = "sc-finality-grandpa"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Integration of the GRANDPA finality gadget into substrate."
|
|
documentation = "https://docs.rs/sc-finality-grandpa"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
ahash = "0.7.6"
|
|
async-trait = "0.1.50"
|
|
dyn-clone = "1.0"
|
|
finality-grandpa = { version = "0.16.0", features = ["derive-codec"] }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.1"
|
|
hex = "0.4.2"
|
|
log = "0.4.17"
|
|
parity-scale-codec = { version = "3.0.0", features = ["derive"] }
|
|
parking_lot = "0.12.0"
|
|
rand = "0.8.4"
|
|
serde_json = "1.0.79"
|
|
thiserror = "1.0"
|
|
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
|
sc-chain-spec = { version = "4.0.0-dev", path = "../../client/chain-spec" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../consensus/common" }
|
|
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-gossip = { version = "0.10.0-dev", path = "../network-gossip" }
|
|
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sp-application-crypto = { version = "6.0.0", path = "../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "5.0.0", path = "../../primitives/arithmetic" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
|
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
|
sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" }
|
|
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
|
|
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
finality-grandpa = { version = "0.16.0", features = [
|
|
"derive-codec",
|
|
"test-helpers",
|
|
] }
|
|
serde = "1.0.136"
|
|
tempfile = "3.1.0"
|
|
tokio = "1.17.0"
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-test = { version = "0.8.0", path = "../network/test" }
|
|
sp-keyring = { version = "6.0.0", path = "../../primitives/keyring" }
|
|
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|