tree-sitter/highlight/Cargo.toml
Lukas Seidel 6b1ebd3d29
feat!: implement StreamingIterator instead of Iterator for QueryMatches and QueryCaptures
This fixes UB when either `QueryMatches` or `QueryCaptures` had collect called on it.

Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
2024-09-29 17:34:48 -04:00

27 lines
701 B
TOML

[package]
name = "tree-sitter-highlight"
version.workspace = true
description = "Library for performing syntax highlighting with Tree-sitter"
authors = [
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
"Tim Clem <timothy.clem@gmail.com>",
]
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["incremental", "parsing", "syntax", "highlighting"]
categories = ["parsing", "text-editors"]
[lib]
crate-type = ["lib", "staticlib"]
[dependencies]
lazy_static.workspace = true
regex.workspace = true
thiserror.workspace = true
streaming-iterator.workspace = true
tree-sitter.workspace = true