tree-sitter/highlight/Cargo.toml

28 lines
655 B
TOML
Raw Normal View History

2019-02-19 11:24:50 -08:00
[package]
name = "tree-sitter-highlight"
description = "Library for performing syntax highlighting with Tree-sitter"
version = "0.20.2"
2019-02-19 11:24:50 -08:00
authors = [
2023-07-19 03:15:03 -04:00
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
"Tim Clem <timothy.clem@gmail.com>",
2019-02-19 11:24:50 -08:00
]
license = "MIT"
readme = "README.md"
edition = "2018"
keywords = ["incremental", "parsing", "syntax", "highlighting"]
categories = ["parsing", "text-editors"]
2019-08-19 16:36:40 -07:00
repository = "https://github.com/tree-sitter/tree-sitter"
rust-version.workspace = true
2019-02-19 11:24:50 -08:00
[lib]
crate-type = ["lib", "staticlib"]
2019-02-19 11:24:50 -08:00
[dependencies]
2023-07-19 03:15:03 -04:00
lazy_static = "1.4.0"
regex = "1.9.1"
thiserror = "1.0.43"
2019-02-19 11:24:50 -08:00
[dependencies.tree-sitter]
version = "0.20"
2019-02-19 11:24:50 -08:00
path = "../lib"