mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
b3648e88e8
Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.11.1 to 0.11.2. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/compare/0.11.1...0.11.2) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62 lines
2.7 KiB
TOML
62 lines
2.7 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]
|
|
derive_more = "0.99.16"
|
|
dyn-clone = "1.0"
|
|
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
|
|
futures = "0.3.9"
|
|
futures-timer = "3.0.1"
|
|
log = "0.4.8"
|
|
parking_lot = "0.11.2"
|
|
rand = "0.8.4"
|
|
parity-scale-codec = { version = "2.3.1", features = ["derive"] }
|
|
sp-application-crypto = { version = "4.0.0", path = "../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "4.0.0", path = "../../primitives/arithmetic" }
|
|
sp-runtime = { version = "4.0.0", path = "../../primitives/runtime" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../consensus/common" }
|
|
sp-core = { version = "4.1.0-dev", path = "../../primitives/core" }
|
|
sp-keystore = { version = "0.10.0", path = "../../primitives/keystore" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
|
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
|
serde_json = "1.0.71"
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-gossip = { version = "0.10.0-dev", path = "../network-gossip" }
|
|
sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
|
finality-grandpa = { version = "0.14.4", features = ["derive-codec"] }
|
|
async-trait = "0.1.50"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
finality-grandpa = { version = "0.14.1", features = [
|
|
"derive-codec",
|
|
"test-helpers",
|
|
] }
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-test = { version = "0.8.0", path = "../network/test" }
|
|
sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
|
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
|
tokio = "1.13"
|
|
tempfile = "3.1.0"
|