Bump sibling cargo deps

This commit is contained in:
Max Brunsfeld 2020-09-24 15:22:52 -07:00
parent e24de9d225
commit 08356f79c7
4 changed files with 9 additions and 7 deletions

4
Cargo.lock generated
View file

@ -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)",

View file

@ -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]

View file

@ -15,7 +15,9 @@ include = [
"/binding_rust/*",
"/Cargo.toml",
"/include/*",
"/src/*",
"/src/*.h",
"/src/*.c",
"/src/unicode/*",
]
[dependencies]

View file

@ -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 <maxbrunsfeld@gmail.com>",
"Patrick Thomson <patrickt@github.com>"
@ -21,5 +21,5 @@ regex = "1"
memchr = "2.3"
[dependencies.tree-sitter]
version = ">= 0.3.7"
version = ">= 0.17.0"
path = "../lib"