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.
71 lines
2.4 KiB
TOML
71 lines
2.4 KiB
TOML
[package]
|
|
name = "pezsc-client-db"
|
|
version = "0.35.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 = "Client backend that uses RocksDB database as storage."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bench]]
|
|
name = "state_access"
|
|
harness = false
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true, default-features = true }
|
|
hash-db = { workspace = true, default-features = true }
|
|
kvdb = { workspace = true }
|
|
kvdb-memorydb = { workspace = true }
|
|
kvdb-rocksdb = { optional = true, workspace = true }
|
|
linked-hash-map = { workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
parity-db = { 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-state-db = { workspace = true, default-features = true }
|
|
schnellru = { workspace = true }
|
|
pezsp-arithmetic = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-database = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-state-machine = { workspace = true, default-features = true }
|
|
pezsp-trie = { workspace = true, default-features = true }
|
|
sysinfo = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = { workspace = true, default-features = true }
|
|
criterion = { workspace = true, default-features = true }
|
|
kitchensink-runtime = { workspace = true }
|
|
kvdb-rocksdb = { workspace = true }
|
|
rand = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
test-helpers = []
|
|
runtime-benchmarks = [
|
|
"kitchensink-runtime/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-state-machine/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
]
|
|
rocksdb = ["kvdb-rocksdb"]
|