mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
5f00ecbff2
* bump version * update Cargo.lock Co-authored-by: Andronik Ordian <write@reusable.software>
35 lines
1.7 KiB
TOML
35 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-statement-distribution"
|
|
version = "0.9.12"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Statement Distribution Subsystem"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.17"
|
|
tracing = "0.1.29"
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
|
arrayvec = "0.5.2"
|
|
indexmap = "1.7.0"
|
|
parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] }
|
|
derive_more = "0.99.11"
|
|
thiserror = "1.0.30"
|
|
|
|
[dev-dependencies]
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
assert_matches = "1.4.0"
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures-timer = "3.0.2"
|