From cc1cc7be94b9a9a8ca7f413f9ed189ef119b75cc Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2019 07:48:14 -0700 Subject: [PATCH] Bump jsonrpc-derive from 14.0.0 to 14.0.1 (#6466) Bumps [jsonrpc-derive](https://github.com/paritytech/jsonrpc) from 14.0.0 to 14.0.1. - [Release notes](https://github.com/paritytech/jsonrpc/releases) - [Commits](https://github.com/paritytech/jsonrpc/compare/v14.0.0...v14.0.1) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 14 +++++++------- core/Cargo.toml | 2 +- vote-signer/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 027ef8635..9ef16cd21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1522,13 +1522,13 @@ dependencies = [ [[package]] name = "jsonrpc-derive" -version = "14.0.0" +version = "14.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3277,7 +3277,7 @@ dependencies = [ "indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4003,7 +4003,7 @@ dependencies = [ "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5582,7 +5582,7 @@ dependencies = [ "checksum jobserver 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "f74e73053eaf95399bf926e48fc7a2a3ce50bd0eaaa2357d391e95b2dcdd4f10" "checksum js-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "1efc4f2a556c58e79c5500912e221dd826bec64ff4aabd8ce71ccef6da02d7d4" "checksum jsonrpc-core 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9b392c9e8e43a12e6b21160903f473b1066e57fe18477394a93a1efd25654003" -"checksum jsonrpc-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1b217357876c9f55d3237fafaebab1e3925d53a2c2508df05ea15c02ddbb8bc" +"checksum jsonrpc-derive 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f79f30bf70049564c507b968162b8fd4bf114514bdacc1e90f9d891f8a66fce3" "checksum jsonrpc-http-server 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dd3d54c822dc67707f21b15f13995b24eb090501c8ad67782b5484c9be36255b" "checksum jsonrpc-pubsub 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db22ae4d04d336fea4378ad4ad87c29563d983fe98c04319c173817a4fd9891f" "checksum jsonrpc-server-utils 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "56ca64eeb4463722c49dd526e0a87dfc0cdecda9348a4b6f5720f25abc4fcc89" diff --git a/core/Cargo.toml b/core/Cargo.toml index ec52c9cab..f08c44a5e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -29,7 +29,7 @@ fs_extra = "1.1.0" indexmap = "1.1" itertools = "0.8.0" jsonrpc-core = "14.0.1" -jsonrpc-derive = "14.0.0" +jsonrpc-derive = "14.0.1" jsonrpc-http-server = "14.0.1" jsonrpc-pubsub = "14.0.0" jsonrpc-ws-server = "14.0.1" diff --git a/vote-signer/Cargo.toml b/vote-signer/Cargo.toml index 636889146..b6064178d 100644 --- a/vote-signer/Cargo.toml +++ b/vote-signer/Cargo.toml @@ -12,7 +12,7 @@ homepage = "https://solana.com/" bs58 = "0.3.0" clap = "2.33" jsonrpc-core = "14.0.1" -jsonrpc-derive = "14.0.0" +jsonrpc-derive = "14.0.1" jsonrpc-http-server = "14.0.1" log = "0.4.8" serde = "1.0.101"