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.
87 lines
3.2 KiB
TOML
87 lines
3.2 KiB
TOML
[package]
|
|
name = "pezsc-transaction-pool"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi transaction pool implementation."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bench]]
|
|
name = "basics"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
futures = { workspace = true }
|
|
futures-timer = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
itertools = { workspace = true }
|
|
linked-hash-map = { workspace = true }
|
|
parking_lot = { workspace = true, default-features = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsc-utils = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-crypto-hashing = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
pezsp-transaction-pool = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, default-features = true, features = [
|
|
"macros",
|
|
"time",
|
|
] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_matches = { workspace = true }
|
|
chrono = { workspace = true }
|
|
criterion = { workspace = true, default-features = true }
|
|
pezcumulus-zombienet-sdk-helpers = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
rstest = { workspace = true }
|
|
pezsc-block-builder = { workspace = true, default-features = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
bizinikiwi-test-runtime = { workspace = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
bizinikiwi-test-runtime-transaction-pool = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
tracing-subscriber = { workspace = true }
|
|
txtesttool = { workspace = true }
|
|
zombienet-configuration = { workspace = true }
|
|
zombienet-sdk = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
|
"pezsc-block-builder/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime/runtime-benchmarks",
|
|
]
|