Cargo.toml 983 B
Newer Older
[package]
name = "jsonrpsee-ws-client"
David's avatar
David committed
version = "0.3.0"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "WebSocket 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-ws-client"

[dependencies]
tokio = { version = "1", features = ["net", "time", "rt-multi-thread", "macros"] }
tokio-rustls = "0.22"
tokio-util = { version = "0.6", features = ["compat"] }
fnv = "1"
futures = { version = "0.3.14", default-features = false, features = ["std"] }
David's avatar
David committed
jsonrpsee-types = { path = "../types", version = "0.3.0" }
log = "0.4"
serde_json = "1"
soketto = "0.6"
pin-project = "1"
thiserror = "1"
url = "2"
rustls = "0.19.1"
rustls-native-certs = "0.5.0"

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