[package] name = "jsonrpsee-http-client" version = "0.6.1" authors = ["Parity Technologies ", "Pierre Krieger "] description = "HTTP client for JSON-RPC" edition = "2018" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee" homepage = "https://github.com/paritytech/jsonrpsee" documentation = "https://docs.rs/jsonrpsee-http-client" [dependencies] async-trait = "0.1" rustc-hash = "1" hyper = { version = "0.14.10", features = ["client", "http1", "http2", "tcp"] } hyper-rustls = { version = "0.23", optional = true } jsonrpsee-types = { path = "../../types", version = "0.6.1" } jsonrpsee-core = { path = "../../core", version = "0.6.1", features = ["client", "http-helpers"] } serde = { version = "1.0", default-features = false, features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tokio = { version = "1.8", features = ["time"] } tracing = "0.1" [dev-dependencies] jsonrpsee-test-utils = { path = "../../test-utils" } tokio = { version = "1.8", features = ["net", "rt-multi-thread", "macros"] } [features] default = ["tls"] tls = ["hyper-rustls/webpki-tokio"]