From 590f418b31da9e05e66e671bb2a064db86c562f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:23:54 +0000 Subject: [PATCH] Bump tree-sitter from 0.24.7 to 0.25.1 Bumps [tree-sitter](https://github.com/tree-sitter/tree-sitter) from 0.24.7 to 0.25.1. - [Release notes](https://github.com/tree-sitter/tree-sitter/releases) - [Commits](https://github.com/tree-sitter/tree-sitter/compare/v0.24.7...v0.25.1) --- updated-dependencies: - dependency-name: tree-sitter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 ++++-- pythondap/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87b37f3..6b1fd1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5151,6 +5151,7 @@ version = "1.0.138" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" dependencies = [ + "indexmap", "itoa", "memchr", "ryu", @@ -5988,13 +5989,14 @@ dependencies = [ [[package]] name = "tree-sitter" -version = "0.24.7" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5387dffa7ffc7d2dae12b50c6f7aab8ff79d6210147c6613561fc3d474c6f75" +checksum = "1a802c93485fb6781d27e27cb5927f6b00ff8d26b56c70af87267be7e99def97" dependencies = [ "cc", "regex", "regex-syntax 0.8.5", + "serde_json", "streaming-iterator", "tree-sitter-language", ] diff --git a/pythondap/Cargo.toml b/pythondap/Cargo.toml index 2d1cb76..3a1603d 100644 --- a/pythondap/Cargo.toml +++ b/pythondap/Cargo.toml @@ -16,5 +16,5 @@ launch_configuration = { path = "../launch_configuration" } crossbeam-channel.workspace = true tracing-subscriber.workspace = true tracing.workspace = true -tree-sitter = "0.24.7" +tree-sitter = "0.25.1" tree-sitter-python = "0.23.6"