From 27ce80490c4d2727000b1214ec2c0116118f4fc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 15:32:51 +0000 Subject: [PATCH] Bump serde_json from 1.0.146 to 1.0.148 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.146 to 1.0.148. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.146...v1.0.148) --- updated-dependencies: - dependency-name: serde_json dependency-version: 1.0.148 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- bevy_lint/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e25a9a5d..48b9e80a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3476,12 +3476,6 @@ version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" -[[package]] -name = "ryu" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - [[package]] name = "same-file" version = "1.0.6" @@ -3560,15 +3554,15 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.146" +version = "1.0.148" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" +checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da" dependencies = [ "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -5071,3 +5065,9 @@ dependencies = [ "quote", "syn", ] + +[[package]] +name = "zmij" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868" diff --git a/Cargo.toml b/Cargo.toml index c9e7dd4e..9d474764 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ serde = { version = "1.0.228", default-features = false, features = [ "std", "derive", ] } -serde_json = { version = "1.0.146", default-features = false, features = [ +serde_json = { version = "1.0.148", default-features = false, features = [ "std", ] } diff --git a/bevy_lint/Cargo.toml b/bevy_lint/Cargo.toml index 733fcb12..cd324b6e 100644 --- a/bevy_lint/Cargo.toml +++ b/bevy_lint/Cargo.toml @@ -61,7 +61,7 @@ bevy = { version = "0.17.2", default-features = false, features = [ ] } # Used to deserialize `--message-format=json` messages from Cargo. -serde_json = "1.0.146" +serde_json = "1.0.148" # Ensures the error messages for lints do not regress. ui_test = "0.30.4"