reconnecting-jsonrpsee-ws-client 0.4.2

jsonrpc-ws-client that reconnects automatically. Warning: It may lose subscription messages when reconnecting.
Documentation
[package]
name = "reconnecting-jsonrpsee-ws-client"
authors = ["Niklas Adolfsson <niklasadolfsson1@gmail.com>"]
version = "0.4.2"
edition = "2021"
rust-version = "1.70.0"
license = "MIT"
repository = "https://github.com/niklasad1/reconnecting-jsonrpsee-ws-client"
description = "jsonrpc-ws-client that reconnects automatically. Warning: It may lose subscription messages when reconnecting."
documentation = "https://docs.rs/reconnecting-jsonrpsee-ws-client"
keywords = ["jsonrpc", "json", "websocket", "WASM"]
readme = "README.md"

[dependencies]
futures = { version = "0.3", default-features = false }
jsonrpsee = { version = "0.22.4" }
serde_json = { version = "1", features = ["raw_value"], default-features = false }
tokio = { version = "1.37", features = ["sync"], default-features = false }
tracing = { version = "0.1", default-features = false }

# WASM
wasm-bindgen-futures = { version = "0.4.41", optional = true }

thiserror = "1"
finito = "0.1"

[features]
default = ["native"]
native = [
    "futures/std",
    "serde_json/std",
    "tokio/rt-multi-thread",
    "tracing/std",
    "jsonrpsee/ws-client",
]
web = ["jsonrpsee/wasm-client", "wasm-bindgen-futures", "finito/wasm-bindgen"]

[dev-dependencies]
jsonrpsee = { version = "0.22.4", features = ["server"] }
hyper = { version = "0.14", features = ["server", "tcp"] }
anyhow = "1"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }

[build-dependencies]
cfg_aliases = "0.2.0"

[package.metadata.docs.rs]
features = ["default"]
rustdoc-args = ["--cfg", "docsrs"]

[package.metadata.playground]
features = ["default"]