mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
86564f1d66
* Replace request-response incoming requests queue with `async-channel`
* Fix unused imports
* Fix channel type in tests
* Fix channel type in tests (part 2)
* Fix unused imports
* update lockfile for {"substrate"}
---------
Co-authored-by: parity-processbot <>
38 lines
1.5 KiB
TOML
38 lines
1.5 KiB
TOML
[package]
|
|
name = "polkadot-dispute-distribution"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
derive_more = "0.99.17"
|
|
parity-scale-codec = { version = "3.4.0", features = ["std"] }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
|
polkadot-node-subsystem = {path = "../../subsystem" }
|
|
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
sc-network = { 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" }
|
|
thiserror = "1.0.31"
|
|
fatality = "0.0.6"
|
|
lru = "0.9.0"
|
|
indexmap = "1.9.1"
|
|
|
|
[dev-dependencies]
|
|
async-channel = "1.8.0"
|
|
async-trait = "0.1.57"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
sp-keyring = { 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" }
|
|
futures-timer = "3.0.2"
|
|
assert_matches = "1.4.0"
|
|
lazy_static = "1.4.0"
|
|
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|