forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (44 loc) · 1.61 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
44
45
46
[package]
name = "sway-lsp"
version = "0.42.1"
description = "LSP server for Sway."
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
anyhow = "1.0.41"
dashmap = "5.4"
forc-pkg = { version = "0.42.1", path = "../forc-pkg" }
forc-tracing = { version = "0.42.1", path = "../forc-tracing" }
lsp-types = { version = "0.94", features = ["proposed"] }
notify = "5.0.0"
notify-debouncer-mini = { version = "0.2.0" }
parking_lot = "0.12.1"
proc-macro2 = "1.0.5"
quote = "1.0.9"
ropey = "1.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.60"
sway-ast = { version = "0.42.1", path = "../sway-ast" }
sway-core = { version = "0.42.1", path = "../sway-core" }
sway-error = { version = "0.42.1", path = "../sway-error" }
sway-parse = { version = "0.42.1", path = "../sway-parse" }
sway-types = { version = "0.42.1", path = "../sway-types" }
sway-utils = { version = "0.42.1", path = "../sway-utils" }
swayfmt = { version = "0.42.1", path = "../swayfmt" }
syn = { version = "1.0.73", features = ["full"] }
tempfile = "3"
thiserror = "1.0.30"
tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
toml_edit = "0.19"
tower-lsp = { version = "0.19", features = ["proposed"] }
tracing = "0.1"
urlencoding = "2.1.2"
[dev-dependencies]
assert-json-diff = "2.0"
dirs = "4.0"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
sway-lsp-test-utils = { path = "tests/utils" }
tower = { version = "0.4.12", default-features = false, features = ["util"] }