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.
112 lines
4.5 KiB
TOML
112 lines
4.5 KiB
TOML
[package]
|
|
name = "solochain-template-node"
|
|
description = "A solochain node template built with Bizinikiwi, part of Pezkuwi Sdk."
|
|
version = "0.0.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { features = ["derive"], workspace = true }
|
|
futures = { features = ["thread-pool"], workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
|
|
# bizinikiwi client
|
|
pezsc-basic-authorship = { workspace = true, default-features = true }
|
|
pezsc-cli = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-consensus = { workspace = true, default-features = true }
|
|
pezsc-consensus-aura = { workspace = true, default-features = true }
|
|
pezsc-consensus-grandpa = { workspace = true, default-features = true }
|
|
pezsc-executor = { workspace = true, default-features = true }
|
|
pezsc-network = { workspace = true, default-features = true }
|
|
pezsc-offchain = { workspace = true, default-features = true }
|
|
pezsc-service = { workspace = true, default-features = true }
|
|
pezsc-telemetry = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsp-consensus-aura = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-genesis-builder = { workspace = true, default-features = true }
|
|
|
|
# bizinikiwi primitives
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-block-builder = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-inherents = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-timestamp = { workspace = true, default-features = true }
|
|
|
|
# frame and pallets
|
|
pezframe-metadata-hash-extension = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezpallet-transaction-payment = { workspace = true, default-features = true }
|
|
pezpallet-transaction-payment-rpc = { workspace = true, default-features = true }
|
|
bizinikiwi-frame-rpc-system = { workspace = true, default-features = true }
|
|
|
|
# These dependencies are used for runtime benchmarking
|
|
pezframe-benchmarking-cli = { workspace = true, default-features = true }
|
|
|
|
# Local Dependencies
|
|
solochain-template-runtime = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
bizinikiwi-build-script-utils = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["solochain-template-runtime/std"]
|
|
# Dependencies that are only required if runtime benchmarking should be build.
|
|
runtime-benchmarks = [
|
|
"pezframe-benchmarking-cli/runtime-benchmarks",
|
|
"pezframe-metadata-hash-extension/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-transaction-payment-rpc/runtime-benchmarks",
|
|
"pezpallet-transaction-payment/runtime-benchmarks",
|
|
"pezsc-basic-authorship/runtime-benchmarks",
|
|
"pezsc-cli/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-consensus-aura/runtime-benchmarks",
|
|
"pezsc-consensus-grandpa/runtime-benchmarks",
|
|
"pezsc-consensus/runtime-benchmarks",
|
|
"pezsc-executor/runtime-benchmarks",
|
|
"pezsc-network/runtime-benchmarks",
|
|
"pezsc-offchain/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool/runtime-benchmarks",
|
|
"solochain-template-runtime/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-blockchain/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-runtime/runtime-benchmarks",
|
|
"pezsp-timestamp/runtime-benchmarks",
|
|
"bizinikiwi-frame-rpc-system/runtime-benchmarks",
|
|
]
|
|
# Enable features that allow the runtime to be tried and debugged. Name might be subject to change
|
|
# in the near future.
|
|
try-runtime = [
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-transaction-payment/try-runtime",
|
|
"solochain-template-runtime/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|