mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +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
52 lines
2.0 KiB
TOML
52 lines
2.0 KiB
TOML
[package]
|
|
name = "polkadot-test-client"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
|
polkadot-test-service = { path = "../service" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
|
|
# Substrate dependencies
|
|
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
|
sc-service = { path = "../../../../substrate/client/service" }
|
|
sc-block-builder = { path = "../../../../substrate/client/block-builder" }
|
|
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
|
sc-offchain = { path = "../../../../substrate/client/offchain" }
|
|
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
|
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-api = { path = "../../../../substrate/primitives/api" }
|
|
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
sp-io = { path = "../../../../substrate/primitives/io" }
|
|
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
futures = "0.3.30"
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"polkadot-primitives/runtime-benchmarks",
|
|
"polkadot-test-runtime/runtime-benchmarks",
|
|
"polkadot-test-service/runtime-benchmarks",
|
|
"sc-service/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|