From 365e107f3f640409076ac7b14ef265f393b3d362 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 19:15:25 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.93 to 1.0.94 (#6269) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.93 to 1.0.94. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.93...v1.0.94) --- 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-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b0fe36aa..c7c13e68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3864,9 +3864,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" +checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" dependencies = [ "indexmap", "itoa", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 5f8e8268..c6692046 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.93", features = ["preserve_order"] } +serde_json = { version = "1.0.94", features = ["preserve_order"] } indexmap = { version = "1.9.2", features = ["serde"] } tokio = { version = "1.26.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 4ffad37d..3c8ef269 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -36,7 +36,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.93" +serde_json = "1.0.94" tracing-error = "0.2.0" tracing-subscriber = "0.3.16" thiserror = "1.0.38" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index a35470aa..2c7276e7 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -178,7 +178,7 @@ regex = "1.7.1" semver = "1.0.16" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.93", features = ["preserve_order"] } +serde_json = { version = "1.0.94", features = ["preserve_order"] } tempfile = "3.4.0" hyper = { version = "0.14.24", features = ["http1", "http2", "server"]}