77 lines
2.4 KiB
TOML
77 lines
2.4 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 = [
|
|
"bizinikiwi-test-runtime-client/std",
|
|
"log/std",
|
|
"pezsc-rpc-api/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsc-transaction-pool/std",
|
|
"pezsp-blockchain/std",
|
|
]
|
|
try-runtime = [
|
|
"bizinikiwi-test-runtime-client/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 = []
|