-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
43 lines (37 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "htmx-lsp"
version = "0.1.0"
edition = "2021"
description = "A language server for htmx"
license = "MIT"
homepage = "https://github.com/ThePrimeagen/htmx-lsp"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow.workspace = true
clap.workspace = true
log.workspace = true
structured-logger.workspace = true
walkdir.workspace = true
tree-sitter.workspace = true
tree-sitter-html.workspace = true
htmx-lsp-server = { version = "0.1.0", path = "./lsp" }
htmx-lsp-util = { version = "0.1.0", path = "./util" }
# [build-dependencies]
# cc="*"
[workspace.dependencies]
tree-sitter = "0.20.10"
tree-sitter-html = "0.19.0"
walkdir = "2.3.3"
anyhow = "1.0.72"
clap = { version = "4.3.17", features = ["derive", "env"] }
log = { version = "0.4.19", features = ["kv_unstable", "kv_unstable_serde"] }
lsp-server = "0.7.2"
lsp-types = "0.94.0"
serde = { version = "1.0.173", features = ["derive"] }
serde_json = "1.0.103"
structured-logger = "1.0.1"
[workspace]
members = [
"lsp",
"util",
]