2021-06-09 12:51:28 -04:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-loader"
|
2024-02-24 17:25:53 -05:00
|
|
|
version.workspace = true
|
2021-06-09 12:51:28 -04:00
|
|
|
description = "Locates, builds, and loads tree-sitter grammars at runtime"
|
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"]
|
2024-07-28 09:59:21 +02:00
|
|
|
# TODO: For backward compatibility these must be enabled by default,
|
|
|
|
|
# consider removing for the next semver incompatible release
|
|
|
|
|
default = ["tree-sitter-highlight", "tree-sitter-tags"]
|
2022-09-06 22:41:52 -07:00
|
|
|
|
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
|
2024-09-21 14:34:30 -05:00
|
|
|
path-slash.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
regex.workspace = true
|
2024-09-30 11:11:23 -04:00
|
|
|
semver.workspace = true
|
2024-02-08 06:43:21 -05:00
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
2024-04-09 21:42:59 -04:00
|
|
|
tempfile.workspace = true
|
2024-09-30 11:11:23 -04:00
|
|
|
url.workspace = true
|
2021-06-09 12:51:28 -04:00
|
|
|
|
2024-09-30 11:11:23 -04:00
|
|
|
tree-sitter = { workspace = true }
|
|
|
|
|
tree-sitter-highlight = { workspace = true, optional = true }
|
|
|
|
|
tree-sitter-tags = { workspace = true, optional = true }
|