mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
a14691804d
* add common libs * asset hubs * add westend * bridge hubs * collectives * contracts * emulated tests * parachain bin * delete collectives constants and update docs * integration tests should have apache license (some missing, some needed changing) * propagate features * fmt
53 lines
2.4 KiB
TOML
53 lines
2.4 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}
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { path = "../../../../../../polkadot/core-primitives", default-features = false}
|
|
polkadot-parachain-primitives = { path = "../../../../../../polkadot/parachain", default-features = false}
|
|
polkadot-runtime-parachains = { path = "../../../../../../polkadot/runtime/parachains" }
|
|
polkadot-runtime = { path = "../../../../../../polkadot/runtime/polkadot" }
|
|
xcm = { package = "staging-xcm", path = "../../../../../../polkadot/xcm", default-features = false}
|
|
pallet-xcm = { path = "../../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../common" }
|
|
asset-hub-westend-runtime = { path = "../../../../runtimes/assets/asset-hub-westend" }
|
|
|
|
# Local
|
|
xcm-emulator = { path = "../../../../../xcm/xcm-emulator", default-features = false}
|
|
integration-tests-common = { path = "../../common", default-features = false}
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"asset-hub-westend-runtime/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"integration-tests-common/runtime-benchmarks",
|
|
"pallet-asset-conversion/runtime-benchmarks",
|
|
"pallet-assets/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"polkadot-runtime-parachains/runtime-benchmarks",
|
|
"polkadot-runtime/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|