feat: initialize Kurdistan SDK - independent fork of Polkadot SDK

This commit is contained in:
2025-12-13 15:44:15 +03:00
commit e4778b4576
6838 changed files with 1847450 additions and 0 deletions
+86
View File
@@ -0,0 +1,86 @@
[package]
name = "pezkuwi-cli"
description = "Pezkuwi Relay-chain Client Node"
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[package.metadata.wasm-pack.profile.release]
# `wasm-opt` has some problems on Linux, see
# https://github.com/rustwasm/wasm-pack/issues/781 etc.
wasm-opt = false
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
clap = { features = ["derive"], optional = true, workspace = true }
futures = { workspace = true }
log = { workspace = true, default-features = true }
pyroscope = { optional = true, workspace = true }
pyroscope_pprofrs = { optional = true, workspace = true }
thiserror = { workspace = true }
pezkuwi-service = { optional = true, workspace = true }
frame-benchmarking-cli = { optional = true, workspace = true, default-features = true }
pezkuwi-node-metrics = { workspace = true, default-features = true }
pezkuwi-node-primitives = { workspace = true, default-features = true }
sc-cli = { optional = true, workspace = true, default-features = true }
sc-network-types = { workspace = true, default-features = true }
sc-service = { optional = true, workspace = true, default-features = true }
sc-storage-monitor = { workspace = true, default-features = true }
sc-sysinfo = { workspace = true, default-features = true }
sc-tracing = { optional = true, workspace = true, default-features = true }
sp-core = { workspace = true, default-features = true }
sp-keyring = { workspace = true, default-features = true }
sp-runtime = { workspace = true, default-features = true }
[build-dependencies]
substrate-build-script-utils = { workspace = true, default-features = true }
[features]
default = ["cli", "db", "full-node"]
db = ["pezkuwi-service/db"]
metadata-hash = ["pezkuwi-service/metadata-hash"]
service = ["dep:pezkuwi-service"]
cli = [
"clap",
"frame-benchmarking-cli",
"sc-cli",
"sc-service",
"sc-tracing",
"service",
]
runtime-benchmarks = [
"frame-benchmarking-cli?/runtime-benchmarks",
"pezkuwi-node-metrics/runtime-benchmarks",
"pezkuwi-node-primitives/runtime-benchmarks",
"pezkuwi-service?/runtime-benchmarks",
"sc-cli?/runtime-benchmarks",
"sc-service?/runtime-benchmarks",
"sc-sysinfo/runtime-benchmarks",
"sc-tracing?/runtime-benchmarks",
"sp-keyring/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
full-node = ["pezkuwi-service/full-node"]
try-runtime = ["pezkuwi-service?/try-runtime", "sp-runtime/try-runtime"]
fast-runtime = ["pezkuwi-service/fast-runtime"]
pyroscope = ["dep:pyroscope", "pyroscope_pprofrs"]
# Configure the native runtimes to use.
zagros-native = ["pezkuwi-service/zagros-native"]
pezkuwichain-native = ["pezkuwi-service/pezkuwichain-native"]
malus = ["full-node", "pezkuwi-service/malus"]
runtime-metrics = [
"pezkuwi-node-metrics/runtime-metrics",
"pezkuwi-service/runtime-metrics",
]