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.
78 lines
2.3 KiB
TOML
78 lines
2.3 KiB
TOML
[package]
|
|
name = "pezkuwi-primitives"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Shared primitives used by Pezkuwi runtime"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bitvec = { features = ["alloc", "serde"], workspace = true }
|
|
bounded-collections = { features = ["serde"], workspace = true }
|
|
codec = { features = ["bit-vec", "derive"], workspace = true }
|
|
hex-literal = { workspace = true, default-features = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["bit-vec", "derive", "serde"], workspace = true }
|
|
serde = { features = ["alloc", "derive"], workspace = true }
|
|
thiserror = { workspace = true, optional = true }
|
|
|
|
pezsp-api = { workspace = true }
|
|
pezsp-application-crypto = { features = ["serde"], workspace = true }
|
|
pezsp-arithmetic = { features = ["serde"], workspace = true }
|
|
pezsp-authority-discovery = { features = ["serde"], workspace = true }
|
|
pezsp-consensus-slots = { features = ["serde"], workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-inherents = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-keystore = { optional = true, workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-staking = { features = ["serde"], workspace = true }
|
|
pezsp-std = { workspace = true, optional = true }
|
|
|
|
pezkuwi-core-primitives = { workspace = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bitvec/std",
|
|
"bounded-collections/std",
|
|
"codec/std",
|
|
"log/std",
|
|
"pezkuwi-core-primitives/std",
|
|
"pezkuwi-teyrchain-primitives/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"pezsp-api/std",
|
|
"pezsp-application-crypto/std",
|
|
"pezsp-arithmetic/std",
|
|
"pezsp-authority-discovery/std",
|
|
"pezsp-consensus-slots/std",
|
|
"pezsp-core/std",
|
|
"pezsp-inherents/std",
|
|
"pezsp-io/std",
|
|
"pezsp-keystore",
|
|
"pezsp-keystore?/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-staking/std",
|
|
"pezsp-std/std",
|
|
"thiserror",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezkuwi-core-primitives/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-authority-discovery/runtime-benchmarks",
|
|
"pezsp-consensus-slots/runtime-benchmarks",
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-staking/runtime-benchmarks",
|
|
]
|
|
test = []
|