mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41: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>
38 lines
2.1 KiB
TOML
38 lines
2.1 KiB
TOML
[package]
|
|
name = "asset-hub-polkadot-integration-tests"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Asset Hub Polkadot runtime integration tests with xcm-emulator"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
|
|
# Substrate
|
|
sp-runtime = { path = "../../../../../../substrate/primitives/runtime", default-features = false}
|
|
frame-support = { path = "../../../../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../../../../substrate/frame/system", default-features = false}
|
|
sp-core = { path = "../../../../../../substrate/primitives/core", default-features = false}
|
|
sp-weights = { path = "../../../../../../substrate/primitives/weights", default-features = false}
|
|
pallet-balances = { path = "../../../../../../substrate/frame/balances", default-features = false}
|
|
pallet-assets = { path = "../../../../../../substrate/frame/assets", default-features = false}
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives", default-features = false}
|
|
polkadot-parachain = { path = "../../../../../../polkadot/parachain", default-features = false}
|
|
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
|
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
|
xcm = { path = "../../../../../../polkadot/xcm", default-features = false}
|
|
xcm-executor = { path = "../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
|
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../common" }
|
|
cumulus-pallet-dmp-queue = { path = "../../../../../pallets/dmp-queue" }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../../../pallets/xcmp-queue", default-features = false}
|
|
cumulus-pallet-parachain-system = { path = "../../../../../pallets/parachain-system" }
|
|
|
|
# Local
|
|
xcm-emulator = { path = "../../../../../xcm/xcm-emulator", default-features = false}
|
|
integration-tests-common = { path = "../../common", default-features = false}
|