From 225e5ea39afd29bc0c5366b346b05a0926d918f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 01:21:50 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.95 to 1.0.96 (#6502) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.95 to 1.0.96. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.95...v1.0.96) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- zebra-rpc/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4295fb5d5..59a11ae64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4114,9 +4114,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "indexmap", "itoa", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 88db0c701..c0a776669 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -44,7 +44,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.15.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.95", features = ["preserve_order"] } +serde_json = { version = "1.0.96", features = ["preserve_order"] } indexmap = { version = "1.9.3", features = ["serde"] } tokio = { version = "1.27.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index a8ddc5acb..9128b5359 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -57,7 +57,7 @@ tracing = "0.1.37" # elasticsearch specific dependencies. elasticsearch = { version = "8.5.0-alpha.1", package = "elasticsearch", optional = true } -serde_json = { version = "1.0.95", package = "serde_json", optional = true } +serde_json = { version = "1.0.96", package = "serde_json", optional = true } zebra-chain = { path = "../zebra-chain" } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index d6a142cb9..288873083 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -43,7 +43,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.95" +serde_json = "1.0.96" tracing-error = "0.2.0" tracing-subscriber = "0.3.16" thiserror = "1.0.40" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index aacbe1e0f..6c4b4ea69 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -194,7 +194,7 @@ regex = "1.7.3" semver = "1.0.17" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.95", features = ["preserve_order"] } +serde_json = { version = "1.0.96", features = ["preserve_order"] } tempfile = "3.5.0" hyper = { version = "0.14.25", features = ["http1", "http2", "server"]}