[package] name = "jsonrpsee-ws-client" version = "0.15.1" authors = ["Parity Technologies ", "Pierre Krieger "] description = "WebSocket client for JSON-RPC" edition = "2021" license = "MIT" repository = "https://github.com/paritytech/jsonrpsee" homepage = "https://github.com/paritytech/jsonrpsee" documentation = "https://docs.rs/jsonrpsee-ws-client" [dependencies] jsonrpsee-types = { path = "../../types", version = "0.15.1" } jsonrpsee-client-transport = { path = "../transport", version = "0.15.1", features = ["ws"] } jsonrpsee-core = { path = "../../core", version = "0.15.1", features = ["async-client"] } http = "0.2.0" [dev-dependencies] tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } jsonrpsee-test-utils = { path = "../../test-utils" } tokio = { version = "1", features = ["macros"] } serde_json = "1" [features] tls = ["jsonrpsee-client-transport/tls"] default = ["tls"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [package.metadata.playground] all-features = true