From 5d08da03fb1fb7382f39736154c4cc17f7765e5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Oct 2021 08:06:09 +0000 Subject: [PATCH] Bump jsonrpc-core from 14.2.0 to 18.0.0 Bumps [jsonrpc-core](https://github.com/paritytech/jsonrpc) from 14.2.0 to 18.0.0. - [Release notes](https://github.com/paritytech/jsonrpc/releases) - [Commits](https://github.com/paritytech/jsonrpc/compare/jsonrpc-core-14.2.0...v18.0.0) --- updated-dependencies: - dependency-name: jsonrpc-core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++++---- chain/ethereum/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8385aa..480bcda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1572,7 +1572,7 @@ dependencies = [ "hex", "http 0.1.21", "itertools", - "jsonrpc-core", + "jsonrpc-core 18.0.0", "lazy_static", "mockall 0.9.1", "pretty_assertions 1.0.0", @@ -2353,6 +2353,21 @@ dependencies = [ "serde_json", ] +[[package]] +name = "jsonrpc-core" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" +dependencies = [ + "futures 0.3.16", + "futures-executor", + "futures-util", + "log 0.4.14", + "serde", + "serde_derive", + "serde_json", +] + [[package]] name = "jsonrpc-http-server" version = "14.2.0" @@ -2360,7 +2375,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0da906d682799df05754480dac1b9e70ec92e12c19ebafd2662a5ea1c9fd6522" dependencies = [ "hyper 0.12.36", - "jsonrpc-core", + "jsonrpc-core 14.2.0", "jsonrpc-server-utils", "log 0.4.14", "net2", @@ -2376,7 +2391,7 @@ checksum = "56cbfb462e7f902e21121d9f0d1c2b77b2c5b642e1a4e8f4ebfa2e15b94402bb" dependencies = [ "bytes 0.4.12", "globset", - "jsonrpc-core", + "jsonrpc-core 14.2.0", "lazy_static", "log 0.4.14", "tokio 0.1.22", @@ -5766,7 +5781,7 @@ dependencies = [ "futures 0.1.31", "hyper 0.12.36", "hyper-tls 0.3.2", - "jsonrpc-core", + "jsonrpc-core 14.2.0", "log 0.4.14", "native-tls", "parking_lot 0.10.2", diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index de2f077..aff7c86 100644 --- a/chain/ethereum/Cargo.toml +++ b/chain/ethereum/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" chrono = "0.4" futures = "0.1.21" http = "0.1.21" # must be compatible with the version rust-web3 uses -jsonrpc-core = "14.2.0" +jsonrpc-core = "18.0.0" graph = { path = "../../graph" } lazy_static = "1.2.0" mockall = "0.9.1"