mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 04:31:02 +00:00
f48296e9ad
* update cargo.toml * use 2.0 in mmmr
29 lines
1.0 KiB
TOML
29 lines
1.0 KiB
TOML
[package]
|
|
description = "A request-response protocol for handling grandpa warp sync requests"
|
|
name = "sc-finality-grandpa-warp-sync"
|
|
version = "0.8.0"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
publish = false
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sc-network = { version = "0.8.0", path = "../network" }
|
|
sc-finality-grandpa = { version = "0.8.0", path = "../finality-grandpa" }
|
|
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
|
sc-client-api = { version = "2.0.0", path = "../api" }
|
|
sc-service = { version = "0.8.0", path = "../service" }
|
|
futures = "0.3.8"
|
|
log = "0.4.11"
|
|
derive_more = "0.99.11"
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
prost = "0.6.1"
|
|
num-traits = "0.2.14"
|
|
parking_lot = "0.11.1"
|