bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
39 lines
990 B
TOML
39 lines
990 B
TOML
[package]
|
|
name = "bizinikiwi-rpc-client"
|
|
version = "0.33.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Shared JSON-RPC client"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
jsonrpsee = { features = ["ws-client"], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
pezsc-rpc-api = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
serde = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
tokio = { features = [
|
|
"macros",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezsc-rpc-api/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|