bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
72 lines
2.5 KiB
TOML
72 lines
2.5 KiB
TOML
[package]
|
|
name = "asset-hub-pezkuwichain-integration-tests"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Asset Hub Pezkuwichain runtime integration tests with xcm-pez-emulator"
|
|
publish = false
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
assert_matches = { workspace = true }
|
|
codec = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-asset-conversion = { workspace = true }
|
|
pezpallet-asset-rewards = { workspace = true }
|
|
pezpallet-assets = { workspace = true }
|
|
pezpallet-balances = { workspace = true }
|
|
pezpallet-message-queue = { workspace = true }
|
|
pezpallet-treasury = { workspace = true }
|
|
pezpallet-utility = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-runtime-common = { workspace = true, default-features = true }
|
|
pezkuwichain-runtime-constants = { workspace = true, default-features = true }
|
|
pezpallet-xcm = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
xcm-runtime-pezapis = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
asset-test-pezutils = { workspace = true, default-features = true }
|
|
emulated-integration-tests-common = { workspace = true }
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true }
|
|
pezkuwichain-system-emulated-network = { workspace = true }
|
|
teyrchains-common = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"asset-test-pezutils/runtime-benchmarks",
|
|
"emulated-integration-tests-common/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezkuwichain-runtime-constants/runtime-benchmarks",
|
|
"pezkuwichain-system-emulated-network/runtime-benchmarks",
|
|
"pezpallet-asset-conversion/runtime-benchmarks",
|
|
"pezpallet-asset-rewards/runtime-benchmarks",
|
|
"pezpallet-assets/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-treasury/runtime-benchmarks",
|
|
"pezpallet-utility/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"teyrchains-common/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-runtime-pezapis/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|