From ea45674ee9acba247c7ced2be61ada1aaa1c09df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Dec 2022 05:11:07 +0000 Subject: [PATCH] Update jsonrpsee requirement from 0.15.1 to 0.16.2 Updates the requirements on [jsonrpsee](https://github.com/paritytech/jsonrpsee) to permit the latest version. - [Release notes](https://github.com/paritytech/jsonrpsee/releases) - [Changelog](https://github.com/paritytech/jsonrpsee/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/jsonrpsee/compare/v0.15.1...v0.16.2) --- updated-dependencies: - dependency-name: jsonrpsee dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cli/Cargo.toml | 2 +- subxt/Cargo.toml | 2 +- testing/test-runtime/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 397c003fc3..07b40712be 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -36,6 +36,6 @@ scale = { package = "parity-scale-codec", version = "3.0.0", default-features = # generate the item mod for codegen syn = "1.0.80" # communicate with the substrate nodes -jsonrpsee = { version = "0.15.1", features = ["async-client", "client-ws-transport", "http-client"] } +jsonrpsee = { version = "0.16.2", features = ["async-client", "client-ws-transport", "http-client"] } # async runtime tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] } diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 9eb2309b66..9a10acbd67 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -32,7 +32,7 @@ scale-value = "0.5.0" scale-decode = "0.3.0" futures = "0.3.13" hex = "0.4.3" -jsonrpsee = { version = "0.15.1", features = ["async-client", "client-ws-transport", "jsonrpsee-types"], optional = true } +jsonrpsee = { version = "0.16.2", features = ["async-client", "client-ws-transport", "jsonrpsee-types"], optional = true } serde = { version = "1.0.124", features = ["derive"] } serde_json = "1.0.64" thiserror = "1.0.24" diff --git a/testing/test-runtime/Cargo.toml b/testing/test-runtime/Cargo.toml index 2742ffd333..54a83e16b5 100644 --- a/testing/test-runtime/Cargo.toml +++ b/testing/test-runtime/Cargo.toml @@ -13,4 +13,4 @@ subxt = { path = "../../subxt" } sp-core = "6.0.0" tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] } which = "4.2.2" -jsonrpsee = { version = "0.15.1", features = ["async-client", "client-ws-transport"] } +jsonrpsee = { version = "0.16.2", features = ["async-client", "client-ws-transport"] }