From 0f9d0c9f6425ec064c60c0f44bd6a4e8e1c7ad97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 31 Jul 2022 22:52:56 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.81 to 1.0.82 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.81 to 1.0.82. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.81...v1.0.82) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- zebra-rpc/Cargo.toml | 4 ++-- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dab1379d56..52af996f767 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4366,9 +4366,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.81" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" +checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" dependencies = [ "indexmap", "itoa 1.0.1", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 14fb6815fc9..5f371b24f7b 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -27,7 +27,7 @@ jsonrpc-core = "18.0.0" jsonrpc-derive = "18.0.0" jsonrpc-http-server = "18.0.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.81", features = ["preserve_order"] } +serde_json = { version = "1.0.82", features = ["preserve_order"] } indexmap = { version = "1.9.1", features = ["serde"] } tokio = { version = "1.20.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } @@ -46,7 +46,7 @@ proptest-derive = { version = "0.3.0", optional = true } insta = { version = "1.15.0", features = ["redactions"] } proptest = "0.10.1" proptest-derive = "0.3.0" -serde_json = "1.0.81" +serde_json = "1.0.82" thiserror = "1.0.31" tokio = { version = "1.20.0", features = ["full", "tracing", "test-util"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index a65077368bc..3f57834e776 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -11,7 +11,7 @@ publish = false structopt = "0.3.26" color-eyre = "0.6.1" hex = "0.4.3" -serde_json = "1.0.81" +serde_json = "1.0.82" tracing-error = "0.2.0" tracing-subscriber = "0.3.11" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 4f2eb0ccbba..4bea6a9a9f5 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -151,7 +151,7 @@ regex = "1.5.6" semver = "1.0.11" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.81", features = ["preserve_order"] } +serde_json = { version = "1.0.82", features = ["preserve_order"] } tempfile = "3.3.0" hyper = { version = "0.14.18", features = ["http1", "http2", "server"]}