78095d125e
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
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "pezsc-rpc-server"
|
|
version = "11.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 RPC servers."
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
dyn-clone = { workspace = true }
|
|
forwarded-header-value = { workspace = true }
|
|
futures = { workspace = true }
|
|
governor = { workspace = true }
|
|
http = { workspace = true }
|
|
http-body-util = { workspace = true }
|
|
hyper = { workspace = true }
|
|
ip_network = { workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
pezsc-rpc-api = { workspace = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
tokio = { features = [
|
|
"parking_lot",
|
|
], workspace = true, default-features = true }
|
|
tower = { workspace = true, features = ["util"] }
|
|
tower-http = { workspace = true, features = ["cors"] }
|
|
|
|
[features]
|
|
runtime-benchmarks = ["pezsc-rpc-api/runtime-benchmarks"]
|
|
std = ["log/std", "pezsc-rpc-api/std", "prometheus-endpoint/std", "serde/std"]
|
|
serde = []
|