267fcec12d
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
51 lines
1.5 KiB
TOML
51 lines
1.5 KiB
TOML
[package]
|
|
name = "bizinikiwi-frame-rpc-support"
|
|
version = "29.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi RPC for FRAME's support"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
jsonrpsee = { features = ["jsonrpsee-types"], workspace = true }
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezsc-rpc-api = { workspace = true, default-features = true }
|
|
pezsp-storage = { workspace = true, default-features = true }
|
|
scale-info = { workspace = true, default-features = true }
|
|
serde = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
jsonrpsee = { features = ["jsonrpsee-types", "ws-client"], workspace = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
tokio = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezsc-rpc-api/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
std = ["pezsc-rpc-api/std"]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezsc-rpc-api/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|