From 2d73fa76314c60d21551f40b9fef9674a0d957c5 Mon Sep 17 00:00:00 2001 From: Park JB Date: Fri, 29 Mar 2024 23:08:55 +0900 Subject: [PATCH] Fix tree-sitter version conflict build error by tree-sitter-rust --- Cargo.toml | 4 ++-- enums/Cargo.toml | 4 ++-- tree-sitter-ccomment/Cargo.toml | 2 +- tree-sitter-mozcpp/Cargo.toml | 2 +- tree-sitter-mozjs/Cargo.toml | 2 +- tree-sitter-preproc/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9fe16ed60..a32446373 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,13 +24,13 @@ serde = { version = "^1.0", features = ["derive"] } termcolor = "^1.2" walkdir = "^2.3" -tree-sitter = "=0.20.9" +tree-sitter = "=0.20.10" tree-sitter-java = "=0.20.0" tree-sitter-kotlin = "0.2.11" tree-sitter-typescript = "=0.20.1" tree-sitter-javascript = "=0.20.0" tree-sitter-python = "=0.20.2" -tree-sitter-rust = "=0.20.3" +tree-sitter-rust = "=0.20.4" tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "=0.20.1" } tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "=0.20.1" } tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "=0.20.2" } diff --git a/enums/Cargo.toml b/enums/Cargo.toml index 3714eea62..36179100c 100644 --- a/enums/Cargo.toml +++ b/enums/Cargo.toml @@ -8,13 +8,13 @@ edition = "2021" clap = { version = "^4.0", features = ["derive"] } askama = "^0.12" -tree-sitter = "0.20.9" +tree-sitter = "=0.20.10" tree-sitter-java = "=0.20.0" tree-sitter-kotlin = "0.2.11" tree-sitter-typescript = "=0.20.1" tree-sitter-javascript = "=0.20.0" tree-sitter-python = "=0.20.2" -tree-sitter-rust = "=0.20.3" +tree-sitter-rust = "=0.20.4" tree-sitter-preproc = { path = "../tree-sitter-preproc", version = "=0.20.1" } tree-sitter-ccomment = { path = "../tree-sitter-ccomment", version = "=0.20.1" } tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp", version = "=0.20.2" } diff --git a/tree-sitter-ccomment/Cargo.toml b/tree-sitter-ccomment/Cargo.toml index 5dc07e694..1a3518bf0 100644 --- a/tree-sitter-ccomment/Cargo.toml +++ b/tree-sitter-ccomment/Cargo.toml @@ -21,7 +21,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "0.20.9" +tree-sitter = "=0.20.10" [build-dependencies] cc = "^1.0" diff --git a/tree-sitter-mozcpp/Cargo.toml b/tree-sitter-mozcpp/Cargo.toml index dd3a7ebae..2fe87adb0 100644 --- a/tree-sitter-mozcpp/Cargo.toml +++ b/tree-sitter-mozcpp/Cargo.toml @@ -21,7 +21,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "=0.20.9" +tree-sitter = "=0.20.10" [build-dependencies] cc = "^1.0" diff --git a/tree-sitter-mozjs/Cargo.toml b/tree-sitter-mozjs/Cargo.toml index 02fca2d79..7da38a753 100644 --- a/tree-sitter-mozjs/Cargo.toml +++ b/tree-sitter-mozjs/Cargo.toml @@ -21,7 +21,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "0.20.9" +tree-sitter = "=0.20.10" [build-dependencies] cc = "^1.0" diff --git a/tree-sitter-preproc/Cargo.toml b/tree-sitter-preproc/Cargo.toml index 96a27d51e..3e82f4a25 100644 --- a/tree-sitter-preproc/Cargo.toml +++ b/tree-sitter-preproc/Cargo.toml @@ -21,7 +21,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "0.20.9" +tree-sitter = "=0.20.10" [build-dependencies] cc = "^1.0"