ts_query_ls/Cargo.toml
Riley Bruins e0abb7d2a7
Some checks failed
CI / Lint (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Corpus test (push) Has been cancelled
CI / Generate schema (push) Has been cancelled
chore: bump to v3.11.0 (#231)
2025-08-16 09:39:27 -07:00

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"] }