diff --git a/Cargo.lock b/Cargo.lock index 69317824..a85e9dad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -764,7 +764,7 @@ dependencies = [ "tiny_http 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tree-sitter 0.17.0", "tree-sitter-highlight 0.3.0", - "tree-sitter-tags 0.2.0", + "tree-sitter-tags 0.3.0", "webbrowser 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -778,7 +778,7 @@ dependencies = [ [[package]] name = "tree-sitter-tags" -version = "0.2.0" +version = "0.3.0" dependencies = [ "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bcc7b42d..c3d183e1 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 c5dbf803..2d132788 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 531b54b4..db73bb72 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"