diff --git a/Cargo.lock b/Cargo.lock index 69317824e..a85e9dada 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bcc7b42d2..c3d183e1e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -37,11 +37,11 @@ tiny_http = "0.6" webbrowser = "0.5.1" [dependencies.tree-sitter] -version = ">= 0.3.7" +version = ">= 0.17.0" path = "../lib" [dependencies.tree-sitter-highlight] -version = ">= 0.1.0" +version = ">= 0.3.0" path = "../highlight" [dependencies.tree-sitter-tags] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index c5dbf8033..2d1327889 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -15,7 +15,9 @@ include = [ "/binding_rust/*", "/Cargo.toml", "/include/*", - "/src/*", + "/src/*.h", + "/src/*.c", + "/src/unicode/*", ] [dependencies] diff --git a/tags/Cargo.toml b/tags/Cargo.toml index 531b54b4c..db73bb723 100644 --- a/tags/Cargo.toml +++ b/tags/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-tags" description = "Library for extracting tag information" -version = "0.2.0" +version = "0.3.0" authors = [ "Max Brunsfeld ", "Patrick Thomson " @@ -21,5 +21,5 @@ regex = "1" memchr = "2.3" [dependencies.tree-sitter] -version = ">= 0.3.7" +version = ">= 0.17.0" path = "../lib"