fix: switch to tree-sitter-json crate

This commit is contained in:
Jakub Panek 2024-04-05 07:09:31 +02:00 committed by GitHub
parent f9742f9e0f
commit 54d9a7b7b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 8 deletions

View File

@ -33,14 +33,12 @@ tree-sitter-bash = { git = "https://github.com/tree-sitter/tree-sitter-bas
tree-sitter-c = { version = "0.20.8", optional = true } tree-sitter-c = { version = "0.20.8", optional = true }
tree-sitter-cpp = { version = "0.20.5", optional = true } tree-sitter-cpp = { version = "0.20.5", optional = true }
tree-sitter-javascript = { version = "0.20.4", optional = true } tree-sitter-javascript = { version = "0.20.4", optional = true }
# new version cannot be published on crates.io - https://github.com/tree-sitter/tree-sitter-json/issues/21 tree-sitter-json = { version = "0.20.2", optional = true }
# tree-sitter-json = { version = "0.19.0", optional = true } tree-sitter-md = { git = "https://github.com/MDeiml/tree-sitter-markdown.git", rev = "272e080bca0efd19a06a7f4252d746417224959e", optional = true }
tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json.git", rev = "11e2cc12d9b267766fb11a06e52952792fd8e3f0", optional = true } tree-sitter-python = { version = "0.20.4", optional = true }
tree-sitter-md = { git = "https://github.com/MDeiml/tree-sitter-markdown.git", rev = "272e080bca0efd19a06a7f4252d746417224959e", optional = true } tree-sitter-rust = { version = "0.20.4", optional = true }
tree-sitter-python = { version = "0.20.4", optional = true } tree-sitter-toml = { version = "0.20.0", optional = true }
tree-sitter-rust = { version = "0.20.4", optional = true } tree-sitter-yaml = { git = "https://github.com/panekj/tree-sitter-yaml", rev = "80c8d76847f03e772c5c524cf29bafb56858a8d1", optional = true }
tree-sitter-toml = { version = "0.20.0", optional = true }
tree-sitter-yaml = { git = "https://github.com/panekj/tree-sitter-yaml", rev = "80c8d76847f03e772c5c524cf29bafb56858a8d1", optional = true }
[features] [features]
default = [] default = []