From f470638db463f21caa62f250ad0ffdd5dad74486 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 09:48:52 +0200 Subject: [PATCH] build(deps): bump reconnecting-jsonrpsee-ws-client from 0.3.0 to 0.4.1 (#1548) Bumps [reconnecting-jsonrpsee-ws-client](https://github.com/niklasad1/reconnecting-jsonrpsee-ws-client) from 0.3.0 to 0.4.1. - [Release notes](https://github.com/niklasad1/reconnecting-jsonrpsee-ws-client/releases) - [Changelog](https://github.com/niklasad1/reconnecting-jsonrpsee-ws-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/niklasad1/reconnecting-jsonrpsee-ws-client/commits/v0.4.1) --- updated-dependencies: - dependency-name: reconnecting-jsonrpsee-ws-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 29 ++++++++++++++--------------- subxt/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 41583e7875..c93fcb5d4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1640,6 +1640,16 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" +[[package]] +name = "finito" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2384245d85162258a14b43567a9ee3598f5ae746a1581fb5d3d2cb780f0dbf95" +dependencies = [ + "futures-timer", + "pin-project", +] + [[package]] name = "fixed-hash" version = "0.8.0" @@ -3393,17 +3403,17 @@ dependencies = [ [[package]] name = "reconnecting-jsonrpsee-ws-client" -version = "0.3.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea5cf7b021db88f1af45a9b2ecdbe5bc1c5cbebc146632269d572cdd435f5cf" +checksum = "a1506220461d62d69380b869e65ac1846b38b5357b363b640e46af9672abc7d6" dependencies = [ + "cfg_aliases", + "finito", "futures", "jsonrpsee", "serde_json", "thiserror", "tokio", - "tokio-retry", - "tokio-stream", "tracing", ] @@ -5132,17 +5142,6 @@ dependencies = [ "syn 2.0.58", ] -[[package]] -name = "tokio-retry" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" -dependencies = [ - "pin-project", - "rand", - "tokio", -] - [[package]] name = "tokio-rustls" version = "0.24.1" diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 8f8cc847de..a8fd772ff3 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -99,7 +99,7 @@ subxt-metadata = { workspace = true, features = ["std"] } subxt-lightclient = { workspace = true, optional = true, default-features = false } # Reconnecting jsonrpc ws client -reconnecting-jsonrpsee-ws-client = { version = "0.3", optional = true } +reconnecting-jsonrpsee-ws-client = { version = "0.4", optional = true } # For parsing urls to disallow insecure schemes url = { workspace = true }