Cargo.toml 983 B
Newer Older
[package]
name = "jsonrpsee-http-server"
version = "0.2.0-alpha"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "HTTP server for JSON-RPC"
edition = "2018"
license = "MIT"

[dependencies]
async-std = "1.8"
futures = "0.3"
fnv = "1"
hyper = { version = "0.14", features = ["stream", "client", "server", "http1", "http2", "tcp"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha" }
jsonrpsee-utils = { path = "../utils", version = "0.2.0-alpha" }
log = "0.4"
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = "1"
parking_lot = "0.11"
thiserror = "1"
# `macros feature` is only used for tests but enabled globally because `dev-dependencies`
# are leaked.
tokio = { version = "1", features = ["net", "rt-multi-thread", "macros"] }
unicase = "2"

[dev-dependencies]
jsonrpsee-test-utils = { path = "../test-utils" }
jsonrpsee-http-client = { path = "../http-client" }