From 88cf56f24b066fd478bfb3102af2cf981853d71f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 15:53:04 +0000 Subject: [PATCH] build(deps): bump the cargo group with 2 updates Bumps the cargo group with 2 updates: [tree-sitter](https://github.com/tree-sitter/tree-sitter) and [clap](https://github.com/clap-rs/clap). Updates `tree-sitter` from 0.25.3 to 0.25.4 - [Release notes](https://github.com/tree-sitter/tree-sitter/releases) - [Commits](https://github.com/tree-sitter/tree-sitter/compare/v0.25.3...v0.25.4) Updates `clap` from 4.5.37 to 4.5.38 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.37...clap_complete-v4.5.38) --- updated-dependencies: - dependency-name: tree-sitter dependency-version: 0.25.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-version: 4.5.38 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ yamlpath/Cargo.toml | 2 +- yp/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc22f34..5058cea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,9 +78,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.37" +version = "4.5.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071" +checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000" dependencies = [ "clap_builder", "clap_derive", @@ -88,9 +88,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.37" +version = "4.5.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2" +checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120" dependencies = [ "anstream", "anstyle", @@ -333,9 +333,9 @@ dependencies = [ [[package]] name = "tree-sitter" -version = "0.25.3" +version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ac5ea5e7f2f1700842ec071401010b9c59bf735295f6e9fa079c3dc035b167" +checksum = "69aff09fea9a41fb061ae6b206cb87cac1b8db07df31be3ba271fbc26760f213" dependencies = [ "cc", "regex", diff --git a/yamlpath/Cargo.toml b/yamlpath/Cargo.toml index f4c20e7..18837ab 100644 --- a/yamlpath/Cargo.toml +++ b/yamlpath/Cargo.toml @@ -11,7 +11,7 @@ license.workspace = true [dependencies] thiserror = "2" -tree-sitter = "0.25.3" +tree-sitter = "0.25.4" tree-sitter-yaml = "0.7.0" [dev-dependencies] diff --git a/yp/Cargo.toml b/yp/Cargo.toml index aa77eda..1453e4f 100644 --- a/yp/Cargo.toml +++ b/yp/Cargo.toml @@ -11,6 +11,6 @@ license.workspace = true [dependencies] anyhow = "1.0.98" -clap = { version = "4.5.37", features = ["derive"] } +clap = { version = "4.5.38", features = ["derive"] } nom = "8" yamlpath = { version = "*", path = "../yamlpath" }