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.
105 lines
4.6 KiB
TOML
105 lines
4.6 KiB
TOML
[package]
|
|
name = "pezcumulus-client-consensus-aura"
|
|
description = "AURA consensus algorithm for teyrchains"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
codec = { features = ["derive"], workspace = true, default-features = true }
|
|
futures = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
schnellru = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros"] }
|
|
tracing = { workspace = true, default-features = true }
|
|
|
|
# Bizinikiwi
|
|
prometheus-endpoint = { 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-babe = { workspace = true, default-features = true }
|
|
pezsc-consensus-slots = { workspace = true, default-features = true }
|
|
pezsc-network-types = { workspace = true, default-features = true }
|
|
pezsc-telemetry = { workspace = true, default-features = true }
|
|
pezsc-utils = { workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-application-crypto = { workspace = true, default-features = true }
|
|
pezsp-block-builder = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
pezsp-consensus-aura = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-inherents = { workspace = true, default-features = true }
|
|
pezsp-keystore = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-state-machine = { workspace = true, default-features = true }
|
|
pezsp-timestamp = { workspace = true, default-features = true }
|
|
pezsp-trie = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-client-collator = { workspace = true, default-features = true }
|
|
pezcumulus-client-consensus-common = { workspace = true, default-features = true }
|
|
pezcumulus-client-consensus-proposer = { workspace = true, default-features = true }
|
|
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-aura = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-node-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem-util = { workspace = true, default-features = true }
|
|
pezkuwi-overseer = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
pezcumulus-test-client = { workspace = true }
|
|
pezcumulus-test-relay-sproof-builder = { workspace = true }
|
|
rstest = { workspace = true }
|
|
pezsp-keyring = { workspace = true }
|
|
pezsp-tracing = { workspace = true }
|
|
pezsp-version = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-client-collator/runtime-benchmarks",
|
|
"pezcumulus-client-consensus-common/runtime-benchmarks",
|
|
"pezcumulus-client-consensus-proposer/runtime-benchmarks",
|
|
"pezcumulus-client-teyrchain-inherent/runtime-benchmarks",
|
|
"pezcumulus-primitives-aura/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-interface/runtime-benchmarks",
|
|
"pezcumulus-test-client/runtime-benchmarks",
|
|
"pezcumulus-test-relay-sproof-builder/runtime-benchmarks",
|
|
"pezkuwi-node-primitives/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-util/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem/runtime-benchmarks",
|
|
"pezkuwi-overseer/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-consensus-aura/runtime-benchmarks",
|
|
"pezsc-consensus-babe/runtime-benchmarks",
|
|
"pezsc-consensus-slots/runtime-benchmarks",
|
|
"pezsc-consensus/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus-aura/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-state-machine/runtime-benchmarks",
|
|
"pezsp-timestamp/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
]
|