5a48ce4498
Uncomment dev-dependencies that were previously commented out to break circular dependencies. These dependencies are needed for tests to compile when running clippy with --all-targets --all-features. Changes include: - pezkuwi/node/*: Add pezkuwi-node-subsystem-test-helpers, pezkuwi-primitives-test-helpers - pezkuwi/xcm/*: Add pezpallet-xcm, xcm-pez-simulator - pezcumulus/client/*: Add test client, runtime, and sproof builder deps - bizinikiwi/pezframe/*: Add bizinikiwi-test-utils, pezframe-support-test, pezpallet-transaction-payment, pezpallet-example-basic, etc. - vendor/pezkuwi-zombienet-sdk: Fix imports from zombienet_sdk to pezkuwi_zombienet_sdk All runtime-benchmarks feature flags have been updated accordingly. cargo clippy --all-targets --all-features --workspace now passes.
75 lines
2.3 KiB
TOML
75 lines
2.3 KiB
TOML
[package]
|
|
name = "bizinikiwi-frame-rpc-system"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME's system exposed over Bizinikiwi RPC"
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
docify = { workspace = true }
|
|
futures = { workspace = true }
|
|
jsonrpsee = { features = [
|
|
"client-core",
|
|
"macros",
|
|
"server-core",
|
|
], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
pezframe-system-rpc-runtime-api = { workspace = true, default-features = true }
|
|
pezsc-rpc-api = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-block-builder = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
pezsc-transaction-pool = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
tokio = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"pezframe-system-rpc-runtime-api/runtime-benchmarks",
|
|
"pezsc-rpc-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"log/std",
|
|
"pezsc-rpc-api/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsc-transaction-pool/std",
|
|
"pezsp-blockchain/std",
|
|
]
|
|
try-runtime = [
|
|
"pezsc-rpc-api/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsc-transaction-pool/try-runtime",
|
|
"pezsp-api/try-runtime",
|
|
"pezsp-block-builder/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|