From 3992b32c917372accb3a4b60a246c247a02d1d1e Mon Sep 17 00:00:00 2001 From: Ales Brelih Date: Fri, 3 May 2024 14:34:58 +0200 Subject: [PATCH] chore: lift tree-sitter-yaml To 0.6.1, before it was downgraded due to a bug where flag was forced. --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17d7acf..ed7a3d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1290,8 +1290,9 @@ dependencies = [ [[package]] name = "tree-sitter-yaml" -version = "0.6.0" -source = "git+https://github.com/tree-sitter-grammars/tree-sitter-yaml?rev=49db816#49db816e6a644ea5914daad801514d9f830e4c88" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aad27ec46ad343d8b514f64dd3fdffb478c592ece561b6c935d90ef55589c6b6" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 050c2c0..e6aedf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ tokio = "1.36.0" anyhow = "1.0.82" serde = "1.0.199" tree-sitter = "0.22.5" -tree-sitter-yaml = { git = "https://github.com/tree-sitter-grammars/tree-sitter-yaml", rev = "49db816" } +tree-sitter-yaml = "0.6.1" reqwest = { version = "0.12.4", features = ["blocking"] } regex = "1.10.4" serde_yaml = "0.9.34"