2019-02-19 11:24:50 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-highlight"
|
2024-02-24 17:25:53 -05:00
|
|
|
version.workspace = true
|
2019-02-19 11:24:50 -08:00
|
|
|
description = "Library for performing syntax highlighting with Tree-sitter"
|
|
|
|
|
authors = [
|
2024-02-14 14:10:51 -05:00
|
|
|
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
|
|
|
|
|
"Tim Clem <timothy.clem@gmail.com>",
|
2019-02-19 11:24:50 -08:00
|
|
|
]
|
2024-02-14 14:10:51 -05:00
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
2019-02-19 11:24:50 -08:00
|
|
|
readme = "README.md"
|
2024-02-14 14:10:51 -05:00
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
2025-07-11 13:02:35 -07:00
|
|
|
documentation = "https://docs.rs/tree-sitter-highlight"
|
2024-02-14 14:10:51 -05:00
|
|
|
license.workspace = true
|
2019-02-19 11:24:50 -08:00
|
|
|
keywords = ["incremental", "parsing", "syntax", "highlighting"]
|
|
|
|
|
categories = ["parsing", "text-editors"]
|
|
|
|
|
|
2024-10-06 13:42:14 -04:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2019-03-08 13:13:02 -08:00
|
|
|
[lib]
|
2025-06-06 14:25:37 -07:00
|
|
|
path = "src/highlight.rs"
|
2019-03-08 13:13:02 -08:00
|
|
|
crate-type = ["lib", "staticlib"]
|
|
|
|
|
|
2019-02-19 11:24:50 -08:00
|
|
|
[dependencies]
|
2024-02-08 06:43:21 -05:00
|
|
|
regex.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
2024-09-29 23:34:48 +02:00
|
|
|
streaming-iterator.workspace = true
|
2019-02-19 11:24:50 -08:00
|
|
|
|
2024-02-25 11:14:29 -08:00
|
|
|
tree-sitter.workspace = true
|