-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
22 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "highlight-assertions"
description = "Reads the unit test format for highlighting of tree-sitter to be used nvim-treesitter's test suite"
version = "0.1.7"
edition = "2021"
authors = ["Stephan Seitz <stephan.seitz@fau.de>"]
license = "MIT"
readme = "README.md"
keywords = ["incremental", "parsing"]
categories = ["api-bindings", "parsing", "text-editors"]
repository = "https://github.com/theHamsta/highlight-assertions"
homepage = "https://github.com/theHamsta/highlight-assertions"
[dependencies]
tree-sitter = "0.20.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
once_cell = "1.17"
regex = "1.7"
anyhow = "1.0"
clap = { version = "4.0.32", features = ["derive"] }
libloading = "0.7.1"