tree-sitter.tree-sitter/crates/loader/Cargo.toml
Will Lillis 1c833e362e
Some checks failed
CI / sanitize (push) Failing after 15s
CI / build (push) Failing after 16s
CI / check-wasm-stdlib (push) Failing after 15s
CI / checks (push) Has been cancelled
fix(rust): address manual-readme lint
Cargo automatically resolves this, so the `Cargo.toml` entries are
redundant.

(cherry picked from commit f430449ab9)
2026-09-04 15:11:34 -04:00

45 lines
1.1 KiB
TOML

[package]
name = "tree-sitter-loader"
version.workspace = true
description = "Locates, builds, and loads tree-sitter grammars at runtime"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/tree-sitter-loader"
license.workspace = true
keywords.workspace = true
categories.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [ "--cfg", "docsrs" ]
[lib]
path = "src/loader.rs"
[lints]
workspace = true
[features]
default = [ "tree-sitter-highlight", "tree-sitter-tags" ]
wasm = [ "tree-sitter/wasm" ]
[dependencies]
cc.workspace = true
etcetera.workspace = true
libloading.workspace = true
log.workspace = true
once_cell.workspace = true
regex.workspace = true
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
tempfile.workspace = true
thiserror.workspace = true
tree-sitter = { workspace = true }
tree-sitter-highlight = { optional = true, workspace = true }
tree-sitter-tags = { optional = true, workspace = true }