-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 789 Bytes
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
[package]
name = "dm-langserver"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
url = "2.5.2"
serde = "1.0.213"
serde_json = "1.0.132"
serde_derive = "1.0.213"
bincode = "1.3.3"
jsonrpc-core = "18.0.0"
lsp-types = "0.93.2"
dap-types = { path = "../dap-types" }
dreammaker = { path = "../dreammaker" }
dreamchecker = { path = "../dreamchecker" }
interval-tree = { path = "../interval-tree" }
libc = "0.2.161"
regex = "1.11.1"
lazy_static = "1.5"
foldhash = "0.2.0"
[build-dependencies]
chrono = "0.4.38"
git2 = { version = "0.20.4", default-features = false }
sha256 = { version = "1.5.0", default-features = false }
ureq = "2.10.1"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(auxtools_bundle)', 'cfg(extools_bundle)'] }