From 95517bdec4fd88acfb81bbf18d9a760e98eee60c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Oct 2022 13:50:19 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.86 to 1.0.87 (#5437) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.86 to 1.0.87. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.86...v1.0.87) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- 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 3e4242213..cda9804a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4385,9 +4385,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.86" +version = "1.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074" +checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45" dependencies = [ "indexmap", "itoa", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 82f18532a..1d47e2112 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -25,7 +25,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.13.1" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.86", features = ["preserve_order"] } +serde_json = { version = "1.0.87", features = ["preserve_order"] } indexmap = { version = "1.9.1", features = ["serde"] } tokio = { version = "1.21.2", features = ["time", "rt-multi-thread", "macros", "tracing"] } @@ -49,7 +49,7 @@ zebra-state = { path = "../zebra-state" } insta = { version = "1.21.0", features = ["redactions", "json"] } proptest = "0.10.1" proptest-derive = "0.3.0" -serde_json = "1.0.86" +serde_json = "1.0.87" thiserror = "1.0.37" tokio = { version = "1.21.2", features = ["full", "tracing", "test-util"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index dae2cdeb8..72b8f4979 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -15,7 +15,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.86" +serde_json = "1.0.87" tracing-error = "0.2.0" tracing-subscriber = "0.3.16" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 9d1123374..acd29764b 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -156,7 +156,7 @@ regex = "1.6.0" semver = "1.0.14" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.86", features = ["preserve_order"] } +serde_json = { version = "1.0.87", features = ["preserve_order"] } tempfile = "3.3.0" hyper = { version = "0.14.20", features = ["http1", "http2", "server"]}