mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 09:51:02 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
30 lines
1.2 KiB
TOML
30 lines
1.2 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
|
|
|
|
[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.21"
|
|
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" }
|
|
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 = { path = "../..", default-features = false }
|
|
xcm-executor = { path = ".." }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "frame-support/std", "sp-runtime/std", "xcm/std" ]
|