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.
60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "xcm-simulator-example"
|
|
description = "Examples of xcm-simulator usage."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "7.0.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
scale-info = { features = [
|
|
"derive",
|
|
], workspace = true, default-features = true }
|
|
tracing = { workspace = true }
|
|
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
pezpallet-uniques = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
|
|
pezpallet-xcm = { 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-simulator = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
pezsp-tracing = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-uniques/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|