mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 18:47:56 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
30 lines
1.0 KiB
TOML
30 lines
1.0 KiB
TOML
[package]
|
|
name = "polkadot-node-subsystem-test-helpers"
|
|
description = "Subsystem traits and message definitions"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.79"
|
|
futures = "0.3.30"
|
|
parking_lot = "0.12.1"
|
|
polkadot-node-subsystem = { path = "../subsystem" }
|
|
polkadot-erasure-coding = { path = "../../erasure-coding" }
|
|
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sc-utils = { path = "../../../substrate/client/utils" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
|
sc-keystore = { path = "../../../substrate/client/keystore" }
|
|
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
|
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto" }
|