-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
31 lines (28 loc) · 915 Bytes
/
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
[package]
name = "wdl-lsp"
version = "0.5.0"
license.workspace = true
rust-version.workspace = true
edition.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Language Server Protocol implementation for WDL"
documentation = "https://docs.rs/wdl-lsp"
[dependencies]
wdl-analysis = { path = "../wdl-analysis", version = "0.5.0" }
wdl-ast = { path = "../wdl-ast", version = "0.9.0" }
wdl-format = { path = "../wdl-format", version = "0.3.0" }
wdl-lint = { path = "../wdl-lint", version = "0.8.0" }
anyhow = { workspace = true }
tokio = { workspace = true }
tower-lsp = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
parking_lot = { workspace = true }
line-index = { workspace = true }
serde_json = { workspace = true }
indexmap = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
[lints]
workspace = true