mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
d046324178
* fix cargo.toml * update arrayvec
43 lines
2.0 KiB
TOML
43 lines
2.0 KiB
TOML
[package]
|
|
name = "polkadot-statement-distribution"
|
|
description = "Statement Distribution Subsystem"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
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-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.7.4"
|
|
indexmap = "1.9.1"
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
thiserror = "1.0.31"
|
|
fatality = "0.0.6"
|
|
bitvec = "1"
|
|
|
|
[dev-dependencies]
|
|
async-channel = "1.8.0"
|
|
assert_matches = "1.4.0"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
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"
|
|
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
|
rand_chacha = "0.3"
|
|
polkadot-node-subsystem-types = { path = "../../subsystem-types" }
|