mirror of
https://github.com/ribru17/ts_query_ls.git
synced 2025-12-23 05:36:52 +00:00
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "ts_query_ls"
|
|
version = "3.11.0"
|
|
authors = ["Riley Bruins <ribru17@gmail.com>"]
|
|
edition = "2024"
|
|
description = "An LSP implementation for Tree-sitter's query files"
|
|
license = "MIT"
|
|
repository = "https://github.com/ribru17/ts_query_ls"
|
|
|
|
[workspace]
|
|
members = [
|
|
".",
|
|
"xtask",
|
|
]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
# Only include schemars in the schema generation xtask, so as to reduce binary
|
|
# size
|
|
[features]
|
|
schema = ["schemars"]
|
|
|
|
[dependencies]
|
|
anstyle = "1.0.11"
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
dashmap = "6.1.0"
|
|
diffy = "0.4.2"
|
|
dissimilar = "1.0.9"
|
|
futures = "0.3.31"
|
|
ignore = "0.4.23"
|
|
libloading = "0.8.5"
|
|
regex = "1.11.0"
|
|
ropey = "1.6.1"
|
|
schemars = { version = "0.8.22", optional = true, features = ["derive"] }
|
|
serde = "1.0.210"
|
|
serde_json = "1.0.132"
|
|
streaming-iterator = "0.1.9"
|
|
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "io-std"] }
|
|
tower-lsp = "0.20.0"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = "0.3.18"
|
|
tree-sitter = { version = "0.25.8", features = ["std", "wasm"] }
|
|
tree-sitter-query = { git = "https://github.com/tree-sitter-grammars/tree-sitter-query", rev = "2668cc53024953224a40b1e6546d7b8ec5a11150" }
|
|
uuid = { version = "1.17.0", features = ["v4"], default-features = false }
|
|
|
|
[build-dependencies]
|
|
cc = "1.1.30"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.1"
|
|
rstest = "0.25.0"
|
|
tower = { version = "0.5.1", features = ["util"] }
|