From 985cea3f744c133018100c5f2219aa9c15cd34f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:04:53 +0000 Subject: [PATCH] chore(dep): bump serde_json in /fuzz in the test-deps group Bumps the test-deps group in /fuzz with 1 update: [serde_json](https://github.com/serde-rs/json). Updates `serde_json` from 1.0.145 to 1.0.146 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.145...v1.0.146) --- updated-dependencies: - dependency-name: serde_json dependency-version: 1.0.146 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test-deps ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- fuzz/Cargo.lock | 4 ++-- fuzz/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 856d7cdf..f77c6e2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ pretty_assertions = "1.4.1" proptest = "1.8.0" rmp-serde = "1.3.0" serde = { version = "1.0.228" } -serde_json = { version = "1.0.145", default-features = true, features = [ +serde_json = { version = "1.0.146", default-features = true, features = [ "std", "float_roundtrip", ] } diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index d891d8fb..7172c47d 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -191,9 +191,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" dependencies = [ "itoa", "memchr", diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index d47980ca..b77b6170 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -11,7 +11,7 @@ cargo-fuzz = true arbitrary = { version = "1.4.*", features = ["derive"] } libfuzzer-sys = { version = "0.4.10" } serde = "1.0.228" -serde_json = "1.0.145" +serde_json = "1.0.146" [dependencies.rsonpath-lib] path = "../crates/rsonpath-lib"