kak-highlight/Cargo.toml
Lucas Schwiderski fe69041113
feat: Use custom version of tree-sitter-rust
Not much development is happening in that plugin.
2023-04-21 21:35:22 +02:00

36 lines
871 B
TOML

[package]
name = "kak-highlight"
description = "Tree-sitter-based highlighting for Kakoune"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.2.1", features = ["cargo", "color", "unicode", "std", "derive"] }
color-eyre = "0.6.2"
crossbeam = "0.8.2"
serde = { version = "1.0.160", features = ["derive"] }
signal-hook = "0.3.15"
toml = "0.7.3"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tree-sitter = "0.20.10"
tree-sitter-highlight = "0.20.1"
tree-sitter-rust = { path = "./tree-sitter-rust", version = "*" }
[dev-dependencies]
criterion = "0.4.0"
[lib]
bench = false
[[bin]]
name = "kak-highlight"
path = "src/main.rs"
bench = false
[[bench]]
name = "worker"
harness = false