26 lines
628 B
TOML
26 lines
628 B
TOML
[package]
|
|
name = "tree-sitter-highlight"
|
|
description = "Library for performing syntax highlighting with Tree-sitter"
|
|
version = "0.20.1"
|
|
authors = [
|
|
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
|
|
"Tim Clem <timothy.clem@gmail.com>",
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
keywords = ["incremental", "parsing", "syntax", "highlighting"]
|
|
categories = ["parsing", "text-editors"]
|
|
repository = "https://github.com/tree-sitter/tree-sitter"
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["lib", "staticlib"]
|
|
|
|
[dependencies]
|
|
regex = "1"
|
|
thiserror = "1.0"
|
|
|
|
[dependencies.tree-sitter]
|
|
version = "0.20"
|
|
path = "../lib"
|