2019-02-19 11:24:50 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-highlight"
|
|
|
|
|
description = "Library for performing syntax highlighting with Tree-sitter"
|
2021-03-08 10:03:45 -08:00
|
|
|
version = "0.19.2"
|
2019-02-19 11:24:50 -08:00
|
|
|
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"]
|
2019-08-19 16:36:40 -07:00
|
|
|
repository = "https://github.com/tree-sitter/tree-sitter"
|
2019-02-19 11:24:50 -08:00
|
|
|
|
2019-03-08 13:13:02 -08:00
|
|
|
[lib]
|
|
|
|
|
crate-type = ["lib", "staticlib"]
|
|
|
|
|
|
2019-02-19 11:24:50 -08:00
|
|
|
[dependencies]
|
|
|
|
|
regex = "1"
|
|
|
|
|
|
|
|
|
|
[dependencies.tree-sitter]
|
|
|
|
|
version = ">= 0.3.7"
|
|
|
|
|
path = "../lib"
|