feat: Rebrand Polkadot/Substrate references to PezkuwiChain

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.
This commit is contained in:
2025-12-14 00:04:10 +03:00
parent 286de54384
commit 1c0e57d984
9084 changed files with 997839 additions and 997557 deletions
+129
View File
@@ -0,0 +1,129 @@
[package]
name = "pezsp-io"
version = "30.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "I/O for Bizinikiwi runtimes"
documentation = "https://docs.rs/pezsp-io"
readme = "README.md"
build = "build.rs"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = { workspace = true }
codec = { features = ["bytes"], workspace = true }
secp256k1 = { features = [
"global-context",
"recovery",
], optional = true, workspace = true, default-features = true }
pezsp-core = { workspace = true }
pezsp-crypto-hashing = { workspace = true }
pezsp-externalities = { workspace = true }
pezsp-keystore = { optional = true, workspace = true }
pezsp-runtime-interface = { workspace = true }
pezsp-state-machine = { optional = true, workspace = true }
pezsp-tracing = { workspace = true }
pezsp-trie = { optional = true, workspace = true }
tracing = { workspace = true }
tracing-core = { workspace = true }
[target.'cfg(not(bizinikiwi_runtime))'.dependencies]
pezsp-keystore = { workspace = true, default-features = false }
pezsp-trie = { workspace = true, default-features = false }
pezsp-state-machine = { workspace = true, default-features = false }
log = { workspace = true, default-features = true }
libsecp256k1 = { workspace = true, default-features = false, features = [
"static-context",
] }
secp256k1 = { workspace = true, default-features = false, features = [
"alloc",
"recovery",
] }
# Required for backwards compatibility reason, but only used for verifying when `UseDalekExt` is set.
ed25519-dalek = { workspace = true }
docify = { workspace = true }
[target.'cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), bizinikiwi_runtime))'.dependencies]
polkavm-derive = { workspace = true }
[build-dependencies]
rustversion = { workspace = true }
[features]
default = ["std"]
std = [
"bytes/std",
"codec/std",
"ed25519-dalek/std",
"libsecp256k1/std",
"log/std",
"secp256k1/global-context",
"secp256k1/std",
"pezsp-core/std",
"pezsp-crypto-hashing/std",
"pezsp-externalities/std",
"pezsp-keystore/std",
"pezsp-runtime-interface/std",
"pezsp-state-machine/std",
"pezsp-tracing/std",
"pezsp-trie/std",
"tracing-core/std",
"tracing/std",
]
with-tracing = ["pezsp-tracing/with-tracing"]
# These two features are used for `no_std` builds for the environments which already provides
# `#[panic_handler]`, `#[alloc_error_handler]` and `#[global_allocator]`.
#
# For the regular wasm runtime builds those are not used.
disable_panic_handler = []
disable_oom = []
disable_allocator = []
# This feature flag controls the runtime's behavior when encountering
# a panic or when it runs out of memory, improving the diagnostics.
#
# When enabled the runtime will marshal the relevant error message
# to the host through the `PanicHandler::abort_on_panic` runtime interface.
# This gives the caller direct programmatic access to the error message.
#
# When disabled the error message will only be printed out in the
# logs, with the caller receiving a generic "wasm `unreachable` instruction executed"
# error message.
#
# This has no effect if both `disable_panic_handler` and `disable_oom`
# are enabled.
#
# WARNING: Enabling this feature flag requires the `PanicHandler::abort_on_panic`
# host function to be supported by the host. Do *not* enable it for your
# runtime without first upgrading your host client!
improved_panic_error_reporting = []
# This feature adds BLS crypto primitives.
# It should not be used in production since the implementation and interface may still
# be subject to significant changes.
bls-experimental = ["pezsp-core/bls-experimental", "pezsp-keystore/bls-experimental"]
# This feature adds Bandersnatch crypto primitives.
# It should not be used in production since the implementation and interface may still
# be subject to significant changes.
bandersnatch-experimental = [
"pezsp-core/bandersnatch-experimental",
"pezsp-keystore/bandersnatch-experimental",
]
runtime-benchmarks = [
"pezsp-runtime-interface/runtime-benchmarks",
"pezsp-state-machine?/runtime-benchmarks",
"pezsp-trie?/runtime-benchmarks",
]