From d5597f8b1284feee8d2ed72966f081ec6744ccf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Nov 2022 00:26:16 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.88 to 1.0.89 (#5690) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.88 to 1.0.89. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.88...v1.0.89) --- 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> --- 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 bba4e8474..991ee2d2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3811,9 +3811,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.88" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7" +checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" dependencies = [ "indexmap", "itoa", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 949939799..f4eff81e9 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -42,7 +42,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.14.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.88", features = ["preserve_order"] } +serde_json = { version = "1.0.89", features = ["preserve_order"] } indexmap = { version = "1.9.2", features = ["serde"] } tokio = { version = "1.22.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 3f8f716a0..664e86a20 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.88" +serde_json = "1.0.89" tracing-error = "0.2.0" tracing-subscriber = "0.3.16" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index c33d52d16..e078480e5 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -172,7 +172,7 @@ regex = "1.7.0" semver = "1.0.14" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.88", features = ["preserve_order"] } +serde_json = { version = "1.0.89", features = ["preserve_order"] } tempfile = "3.3.0" hyper = { version = "0.14.23", features = ["http1", "http2", "server"]}