1c0e57d984
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
72 lines
2.4 KiB
TOML
72 lines
2.4 KiB
TOML
[package]
|
|
name = "asset-hub-zagros-integration-tests"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Asset Hub Zagros runtime integration tests with xcm-emulator"
|
|
publish = false
|
|
|
|
[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 }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
# Pezkuwi
|
|
pezpallet-xcm = { workspace = true }
|
|
pezkuwi-runtime-common = { workspace = true, default-features = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
xcm-runtime-apis = { workspace = true }
|
|
|
|
# Pezcumulus
|
|
asset-test-utils = { workspace = true, default-features = true }
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true }
|
|
pezcumulus-pezpallet-xcmp-queue = { workspace = true }
|
|
emulated-integration-tests-common = { workspace = true }
|
|
teyrchains-common = { workspace = true, default-features = true }
|
|
zagros-system-emulated-network = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"asset-test-utils/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-xcmp-queue/runtime-benchmarks",
|
|
"emulated-integration-tests-common/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/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-xcm/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"teyrchains-common/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-runtime-apis/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
"zagros-system-emulated-network/runtime-benchmarks",
|
|
]
|