mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
ffa0e30e58
Closes: - #1383 - Declared chains can be now be imported and reused in a different crate. - Chain declaration are now generic over a generic type `N` (the Network) - #1389 - Solved #1383, chains and networks declarations can be restructure to avoid having to compile all chains when running integrations tests where are not needed. - Chains are now declared on its own crate (removed from `integration-tests-common`) - Networks are now declared on its own crate (removed from `integration-tests-common`) - Integration tests will import only the relevant Network crate - `integration-tests-common` is renamed to `emulated-integration-tests-common` All this is necessary to be able to implement what is described here: https://github.com/paritytech/roadmap/issues/56#issuecomment-1777010553 --------- Co-authored-by: command-bot <>
42 lines
2.6 KiB
TOML
42 lines
2.6 KiB
TOML
[package]
|
|
name = "asset-hub-westend-integration-tests"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Asset Hub Westend runtime integration tests with xcm-emulator"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
assert_matches = "1.5.0"
|
|
|
|
# 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}
|
|
pallet-balances = { path = "../../../../../../../substrate/frame/balances", default-features = false}
|
|
pallet-assets = { path = "../../../../../../../substrate/frame/assets", default-features = false}
|
|
pallet-asset-conversion = { path = "../../../../../../../substrate/frame/asset-conversion", default-features = false}
|
|
pallet-treasury = { path = "../../../../../../../substrate/frame/treasury", default-features = false}
|
|
pallet-asset-rate = { path = "../../../../../../../substrate/frame/asset-rate", default-features = false}
|
|
pallet-message-queue = { path = "../../../../../../../substrate/frame/message-queue", default-features = false }
|
|
|
|
# Polkadot
|
|
polkadot-runtime-common = { path = "../../../../../../../polkadot/runtime/common" }
|
|
xcm = { package = "staging-xcm", path = "../../../../../../../polkadot/xcm", default-features = false}
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
|
pallet-xcm = { path = "../../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
|
westend-runtime = { path = "../../../../../../../polkadot/runtime/westend" }
|
|
westend-runtime-constants = { path = "../../../../../../../polkadot/runtime/westend/constants", default-features = false }
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../../../parachains/common" }
|
|
asset-hub-westend-runtime = { path = "../../../../../runtimes/assets/asset-hub-westend" }
|
|
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
|
cumulus-pallet-dmp-queue = { default-features = false, path = "../../../../../../pallets/dmp-queue" }
|
|
cumulus-pallet-parachain-system = { default-features = false, path = "../../../../../../pallets/parachain-system" }
|
|
emulated-integration-tests-common = { path = "../../../common", default-features = false}
|
|
westend-system-emulated-network ={ path = "../../../networks/westend-system" }
|