From d6670c663830c34ce57b83e6ad9664ba61fd37d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 15:54:12 +0000 Subject: [PATCH 1/2] build(deps): Bump jsonc-parser from 0.32.4 to 0.33.0 Bumps [jsonc-parser](https://github.com/dprint/jsonc-parser) from 0.32.4 to 0.33.0. - [Commits](https://github.com/dprint/jsonc-parser/compare/0.32.4...0.33.0) --- updated-dependencies: - dependency-name: jsonc-parser dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5de1e81..ff44d93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1284,9 +1284,9 @@ dependencies = [ [[package]] name = "jsonc-parser" -version = "0.32.4" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "840785e1a8b4fdb27be18440a35a81af64820dc185c3973ff8b012d4c6282512" +checksum = "362fdb0bfedf94ebd31e4e82ff38ba705b6b82417b3b25f0c4bbb024dd11f552" dependencies = [ "indexmap", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 9b9bdf2..047bba6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ gix-config = "0.58" # under rustc ≥ 1.94's stricter exhaustivity check. gix-config does # not enable these features through its own feature graph. gix-hash = { version = "0.25", features = ["sha1"] } -jsonc-parser = { version = "0.32.4", features = ["cst", "serde_json", "preserve_order"] } +jsonc-parser = { version = "0.33.0", features = ["cst", "serde_json", "preserve_order"] } ratatui = "0.30" serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["preserve_order"] } From e3b7f6d07e1c934c52cd5aa7506f38e7c9abc4e8 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 11 Jul 2026 03:32:32 +0000 Subject: [PATCH 2/2] fix(json): satisfy clippy question_mark lint in leaf-key discovery Co-authored-by: Muhan Li --- src/document.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/document.rs b/src/document.rs index 2839c17..83e5bf5 100644 --- a/src/document.rs +++ b/src/document.rs @@ -1217,10 +1217,8 @@ fn json_shared_scalar_leaf_keys(items: &[CstObject], id_key: &str) -> Vec