From c1695c35e2e61cb8828680c075800e2b85064d50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jul 2023 23:23:24 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.99 to 1.0.100 (#7149) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.99 to 1.0.100. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.99...v1.0.100) --- 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-chain/Cargo.toml | 2 +- zebra-node-services/Cargo.toml | 4 ++-- zebra-rpc/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56b0cc574..ef5001d66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4089,9 +4089,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.99" +version = "1.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" +checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" dependencies = [ "indexmap 2.0.0", "itoa", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 4dda603ad..05acba6e6 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -105,7 +105,7 @@ redjubjub = "0.7.0" reddsa = "0.5.0" # Production feature json-conversion -serde_json = { version = "1.0.99", optional = true } +serde_json = { version = "1.0.100", optional = true } # Experimental feature getblocktemplate-rpcs zcash_address = { version = "0.2.1", optional = true } diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index af993cfc4..444710708 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -45,7 +45,7 @@ jsonrpc-core = { version = "18.0.0", optional = true } # Security: avoid default dependency on openssl reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"], optional = true } serde = { version = "1.0.166", optional = true } -serde_json = { version = "1.0.99", optional = true } +serde_json = { version = "1.0.100", optional = true } [dev-dependencies] @@ -53,4 +53,4 @@ color-eyre = "0.6.2" jsonrpc-core = "18.0.0" reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] } serde = "1.0.166" -serde_json = "1.0.97" +serde_json = "1.0.100" diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index a839884c6..1caa8be66 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -51,7 +51,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.16.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.99", features = ["preserve_order"] } +serde_json = { version = "1.0.100", features = ["preserve_order"] } indexmap = { version = "2.0.0", features = ["serde"] } tokio = { version = "1.29.1", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 55e1b1537..6c4761ae4 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -69,7 +69,7 @@ tracing = "0.1.37" # elasticsearch specific dependencies. # Security: avoid default dependency on openssl elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true } -serde_json = { version = "1.0.99", package = "serde_json", optional = true } +serde_json = { version = "1.0.100", package = "serde_json", optional = true } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.27" } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 19dadb808..a9598a94a 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -69,7 +69,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.99" +serde_json = "1.0.100" tracing-error = "0.2.0" tracing-subscriber = "0.3.17" thiserror = "1.0.41" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 146450e56..a0cc68e82 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -236,7 +236,7 @@ once_cell = "1.18.0" regex = "1.8.4" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.99", features = ["preserve_order"] } +serde_json = { version = "1.0.100", features = ["preserve_order"] } tempfile = "3.5.0" hyper = { version = "0.14.27", features = ["http1", "http2", "server"]}