2019-02-19 11:24:50 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-highlight"
|
|
|
|
|
description = "Library for performing syntax highlighting with Tree-sitter"
|
2023-06-22 09:18:53 -04:00
|
|
|
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"
|
2023-04-04 02:41:42 +03:00
|
|
|
rust-version.workspace = true
|
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]
|
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]
|
2021-09-03 13:31:26 -07:00
|
|
|
version = "0.20"
|
2019-02-19 11:24:50 -08:00
|
|
|
path = "../lib"
|