From b2d05dbecda2870b01db66d3fc5c3f488bdb3224 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jul 2023 07:44:51 +0000 Subject: [PATCH] Bump serde_json from 1.0.103 to 1.0.104 (#969) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.103 to 1.0.104. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.103...v1.0.104) --- 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 ++-- full-node/Cargo.toml | 2 +- lib/Cargo.toml | 2 +- light-base/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaee8adcc1..6034700254 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2187,9 +2187,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.103" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" dependencies = [ "itoa", "ryu", diff --git a/full-node/Cargo.toml b/full-node/Cargo.toml index ae475a7cd5..0f3b55d8e0 100644 --- a/full-node/Cargo.toml +++ b/full-node/Cargo.toml @@ -33,7 +33,7 @@ humantime = { version = "2.1.0", default-features = false } mick-jaeger = "0.1.8" rand = "0.8.5" serde = { version = "1.0.175", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.102", default-features = false, features = ["std"] } +serde_json = { version = "1.0.104", default-features = false, features = ["std"] } siphasher = { version = "0.3.10", default-features = false } soketto = { version = "0.7.1", features = ["deflate"] } smol = "1.3.0" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index f16654f302..109622f7d3 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -69,7 +69,7 @@ rand_chacha = { version = "0.3.1", default-features = false } ruzstd = { version = "0.4.0" } # TODO: uses `#![feature(error_in_core)]` when the `std` feature is disabled, see https://github.com/rust-lang/rust/issues/103765 schnorrkel = { version = "0.10.2", default-features = false, features = ["preaudit_deprecated", "u64_backend"] } serde = { version = "1.0.175", default-features = false, features = ["alloc", "derive"] } -serde_json = { version = "1.0.102", default-features = false, features = ["alloc", "raw_value"] } +serde_json = { version = "1.0.104", default-features = false, features = ["alloc", "raw_value"] } sha2 = { version = "0.10.7", default-features = false } sha3 = { version = "0.10.8", default-features = false } siphasher = { version = "0.3.10", default-features = false } diff --git a/light-base/Cargo.toml b/light-base/Cargo.toml index cea6c1e332..a71f806764 100644 --- a/light-base/Cargo.toml +++ b/light-base/Cargo.toml @@ -34,7 +34,7 @@ pin-project = "1.1.2" rand = { version = "0.8.5", default-features = false, features = ["alloc"] } rand_chacha = { version = "0.3.1", default-features = false } serde = { version = "1.0.175", default-features = false, features = ["alloc", "derive"] } -serde_json = { version = "1.0.102", default-features = false, features = ["alloc"] } +serde_json = { version = "1.0.104", default-features = false, features = ["alloc"] } siphasher = { version = "0.3.10", default-features = false } slab = { version = "0.4.8", default-features = false } smoldot = { version = "0.9.0", path = "../lib", default-features = false }