tree-sitter.tree-sitter/crates/highlight/Cargo.toml
Will Lillis d9cb739430 fix(toml): drop align_entries = true from .taplo.toml
This key was being applied inconsistently depending on nesting level.
2026-08-29 11:10:37 +02:00

29 lines
781 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
readme = "README.md"
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