mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 05:17:58 +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
36 lines
1.5 KiB
TOML
36 lines
1.5 KiB
TOML
[package]
|
|
name = "xcm-executor-integration-tests"
|
|
description = "Integration tests for the XCM Executor"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "1.0.0"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../substrate/frame/system" }
|
|
futures = "0.3.30"
|
|
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment" }
|
|
pallet-xcm = { path = "../../pallet-xcm" }
|
|
polkadot-test-client = { path = "../../../node/test/client" }
|
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
|
polkadot-test-service = { path = "../../../node/test/service" }
|
|
polkadot-service = { path = "../../../node/service" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
xcm = { package = "staging-xcm", path = "../..", default-features = false }
|
|
xcm-executor = { package = "staging-xcm-executor", path = ".." }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["frame-support/std", "sp-runtime/std", "xcm/std"]
|