tree-sitter.tree-sitter/crates/highlight/Cargo.toml
Will Lillis f430449ab9
Some checks failed
CI / sanitize (push) Failing after 15s
CI / build (push) Failing after 16s
CI / check-wasm-stdlib (push) Failing after 14s
CI / checks (push) Has been cancelled
fix(rust): address manual-readme lint
Cargo automatically resolves this, so the `Cargo.toml` entries are
redundant.
2026-09-04 14:48:46 -04:00

28 lines
760 B
TOML

[package]
name = "tree-sitter-highlight"
version.workspace = true
description = "Library for performing syntax highlighting with Tree-sitter"
authors = [ "Max Brunsfeld <maxbrunsfeld@gmail.com>", "Tim Clem <timothy.clem@gmail.com>" ]
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/tree-sitter-highlight"
license.workspace = true
keywords = [ "incremental", "parsing", "syntax", "highlighting" ]
categories = [ "parsing", "text-editors" ]
[lints]
workspace = true
[lib]
crate-type = [ "lib", "staticlib" ]
path = "src/highlight.rs"
[dependencies]
regex.workspace = true
streaming-iterator.workspace = true
thiserror.workspace = true
tree-sitter.workspace = true