tree-sitter/crates/highlight/Cargo.toml

32 lines
780 B
TOML
Raw Normal View History

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