379cb741ed
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.
144 lines
4.8 KiB
TOML
144 lines
4.8 KiB
TOML
[package]
|
|
name = "pezcumulus-test-runtime"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-executive = { workspace = true }
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezframe-system-rpc-runtime-api = { workspace = true }
|
|
pezpallet-aura = { workspace = true }
|
|
pezpallet-authorship = { workspace = true }
|
|
pezpallet-balances = { workspace = true }
|
|
pezpallet-glutton = { workspace = true }
|
|
pezpallet-message-queue = { workspace = true }
|
|
pezpallet-session = { workspace = true }
|
|
pezpallet-sudo = { workspace = true }
|
|
pezpallet-timestamp = { workspace = true }
|
|
pezpallet-transaction-payment = { workspace = true }
|
|
pezsp-api = { workspace = true }
|
|
pezsp-block-builder = { workspace = true }
|
|
pezsp-consensus-aura = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-genesis-builder = { workspace = true }
|
|
pezsp-inherents = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-keyring = { workspace = true }
|
|
pezsp-offchain = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-session = { workspace = true }
|
|
pezsp-transaction-pool = { workspace = true }
|
|
pezsp-version = { workspace = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-pezpallet-aura-ext = { workspace = true }
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true }
|
|
pezcumulus-pezpallet-weight-reclaim = { workspace = true }
|
|
pezcumulus-primitives-aura = { workspace = true }
|
|
pezcumulus-primitives-core = { workspace = true }
|
|
teyrchain-info = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezcumulus-pezpallet-aura-ext/std",
|
|
"pezcumulus-pezpallet-teyrchain-system/std",
|
|
"pezcumulus-pezpallet-weight-reclaim/std",
|
|
"pezcumulus-primitives-aura/std",
|
|
"pezcumulus-primitives-core/std",
|
|
"pezframe-executive/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system-rpc-runtime-api/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-aura/std",
|
|
"pezpallet-authorship/std",
|
|
"pezpallet-balances/std",
|
|
"pezpallet-glutton/std",
|
|
"pezpallet-message-queue/std",
|
|
"pezpallet-session/std",
|
|
"pezpallet-sudo/std",
|
|
"pezpallet-timestamp/std",
|
|
"pezpallet-transaction-payment/std",
|
|
"scale-info/std",
|
|
"serde_json/std",
|
|
"pezsp-api/std",
|
|
"pezsp-block-builder/std",
|
|
"pezsp-consensus-aura/std",
|
|
"pezsp-core/std",
|
|
"pezsp-genesis-builder/std",
|
|
"pezsp-inherents/std",
|
|
"pezsp-io/std",
|
|
"pezsp-keyring/std",
|
|
"pezsp-offchain/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-session/std",
|
|
"pezsp-transaction-pool/std",
|
|
"pezsp-version/std",
|
|
"bizinikiwi-wasm-builder",
|
|
"teyrchain-info/std",
|
|
]
|
|
increment-spec-version = []
|
|
# A runtime which expects to build behind the relay chain tip.
|
|
relay-parent-offset = []
|
|
# A runtime with elastic-scaling configuration.
|
|
elastic-scaling = []
|
|
# A runtime with low slot duration of 500ms for low-latency testing with 12 cores.
|
|
elastic-scaling-500ms = []
|
|
# A runtime with a slot duration of 6s but parameters that allow multiple blocks per slot.
|
|
elastic-scaling-multi-block-slot = []
|
|
# A runtime with 12s slot duration which only authors one block per slot.
|
|
sync-backing = []
|
|
# A runtime with 6s slot duration which only authors one block per slot.
|
|
async-backing = []
|
|
# An elastic scaling runtime with 12s slots.
|
|
elastic-scaling-12s-slot = []
|
|
runtime-benchmarks = [
|
|
"pezcumulus-pezpallet-aura-ext/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-weight-reclaim/runtime-benchmarks",
|
|
"pezcumulus-primitives-aura/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezframe-executive/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system-rpc-runtime-api/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-aura/runtime-benchmarks",
|
|
"pezpallet-authorship/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-glutton/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-session/runtime-benchmarks",
|
|
"pezpallet-sudo/runtime-benchmarks",
|
|
"pezpallet-timestamp/runtime-benchmarks",
|
|
"pezpallet-transaction-payment/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-consensus-aura/runtime-benchmarks",
|
|
"pezsp-genesis-builder/runtime-benchmarks",
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-offchain/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-session/runtime-benchmarks",
|
|
"pezsp-transaction-pool/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
"bizinikiwi-wasm-builder?/runtime-benchmarks",
|
|
"teyrchain-info/runtime-benchmarks",
|
|
]
|