2021-06-09 12:51:28 -04:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-loader"
|
|
|
|
|
description = "Locates, builds, and loads tree-sitter grammars at runtime"
|
2021-11-21 13:40:33 -08:00
|
|
|
version = "0.20.0"
|
2024-02-14 14:10:51 -05:00
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
2023-04-04 02:41:42 +03:00
|
|
|
rust-version.workspace = true
|
2024-02-14 14:10:51 -05:00
|
|
|
readme = "README.md"
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2021-06-09 12:51:28 -04:00
|
|
|
|
2022-09-06 22:41:52 -07:00
|
|
|
[features]
|
|
|
|
|
wasm = ["tree-sitter/wasm"]
|
|
|
|
|
|
2021-06-09 12:51:28 -04:00
|
|
|
[dependencies]
|
2024-02-08 06:43:21 -05:00
|
|
|
anyhow.workspace = true
|
|
|
|
|
cc.workspace = true
|
|
|
|
|
dirs.workspace = true
|
2024-02-07 09:30:24 -05:00
|
|
|
fs4.workspace = true
|
2024-02-12 16:13:02 -05:00
|
|
|
indoc.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
libloading.workspace = true
|
|
|
|
|
once_cell.workspace = true
|
|
|
|
|
regex.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
which.workspace = true
|
2021-06-09 12:51:28 -04:00
|
|
|
|
|
|
|
|
[dependencies.tree-sitter]
|
2024-02-08 06:43:21 -05:00
|
|
|
version = "0.20.10"
|
2021-06-09 12:51:28 -04:00
|
|
|
path = "../../lib"
|
|
|
|
|
|
|
|
|
|
[dependencies.tree-sitter-highlight]
|
2024-02-08 06:43:21 -05:00
|
|
|
version = "0.20.2"
|
2021-06-09 12:51:28 -04:00
|
|
|
path = "../../highlight"
|
|
|
|
|
|
|
|
|
|
[dependencies.tree-sitter-tags]
|
2024-02-08 06:43:21 -05:00
|
|
|
version = "0.20.2"
|
2021-06-09 12:51:28 -04:00
|
|
|
path = "../../tags"
|