Cargo.toml 739 B
Newer Older
[package]
name = "jsonrpsee-benchmarks"
version = "0.6.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Benchmarks for jsonrpsee"
edition = "2018"
license = "MIT"
publish = false
[dev-dependencies]
criterion = { version = "0.3", features = ["async_tokio", "html_reports"] }
futures-channel = "0.3.15"
futures-util = "0.3.15"
jsonrpsee = { path = "../jsonrpsee", features = ["full"] }
jsonrpc-ws-server = "18.0.0"
jsonrpc-http-server = "18.0.0"
jsonrpc-pubsub = "18.0.0"
num_cpus = "1"
serde_json = "1"
tokio = { version = "1.8", features = ["full"] }

[[bench]]
name = "bench"
path = "bench.rs"
harness = false

[features]
# Run benchmarks against servers in https://github.com/paritytech/jsonrpc/
jsonrpc-crate = []