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.
97 lines
4.1 KiB
TOML
97 lines
4.1 KiB
TOML
[package]
|
|
name = "emulated-integration-tests-common"
|
|
version = "3.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Common resources for integration testing with xcm-emulator"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
paste = { workspace = true, default-features = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezpallet-asset-conversion = { workspace = true, default-features = true }
|
|
pezpallet-assets = { workspace = true, default-features = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
pezpallet-whitelist = { workspace = true, default-features = true }
|
|
pezsc-consensus-grandpa = { workspace = true, default-features = true }
|
|
pezsp-authority-discovery = { workspace = true, default-features = true }
|
|
pezsp-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-consensus-beefy = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
|
|
# Pezkuwi
|
|
pezpallet-xcm = { features = [
|
|
"test-utils",
|
|
], workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
xcm-builder = { workspace = true, default-features = true }
|
|
xcm-executor = { workspace = true, default-features = true }
|
|
xcm-runtime-apis = { workspace = true, default-features = true }
|
|
xcm-simulator = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
asset-test-utils = { workspace = true, default-features = true }
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true, default-features = true }
|
|
pezcumulus-pezpallet-xcmp-queue = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
|
teyrchains-common = { workspace = true, default-features = true }
|
|
xcm-emulator = { workspace = true, default-features = true }
|
|
|
|
# Bridges
|
|
bp-messages = { workspace = true, default-features = true }
|
|
bp-xcm-bridge-hub = { workspace = true, default-features = true }
|
|
pezpallet-bridge-messages = { workspace = true, default-features = true }
|
|
pezpallet-xcm-bridge-hub = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"asset-test-utils/runtime-benchmarks",
|
|
"bp-messages/runtime-benchmarks",
|
|
"bp-xcm-bridge-hub/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-xcmp-queue/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-asset-conversion/runtime-benchmarks",
|
|
"pezpallet-assets/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-bridge-messages/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-whitelist/runtime-benchmarks",
|
|
"pezpallet-xcm-bridge-hub/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezsc-consensus-grandpa/runtime-benchmarks",
|
|
"pezsp-authority-discovery/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus-beefy/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"teyrchains-common/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-emulator/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-runtime-apis/runtime-benchmarks",
|
|
"xcm-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|