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.
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[package]
|
|
name = "pezframe-system"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME system module"
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
cfg-if = { workspace = true }
|
|
codec = { features = ["derive"], workspace = true }
|
|
docify = { workspace = true }
|
|
pezframe-support = { workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive", "serde"], workspace = true }
|
|
serde = { features = ["alloc", "derive"], workspace = true }
|
|
pezsp-core = { features = ["serde"], workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { features = ["serde"], workspace = true }
|
|
pezsp-version = { features = ["serde"], workspace = true }
|
|
pezsp-weights = { features = ["serde"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true, default-features = true }
|
|
pezsp-externalities = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezframe-support/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-version/std",
|
|
"pezsp-weights/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["pezframe-support/try-runtime", "pezsp-runtime/try-runtime"]
|
|
experimental = ["pezframe-support/experimental"]
|