forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 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
[package]
name = "sway-lsp"
version = "0.20.2"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/sway"
description = "LSP server for Sway."
[dependencies]
dashmap = "5.3.4"
forc-pkg = { version = "0.20.2", path = "../forc-pkg" }
forc-util = { version = "0.20.2", path = "../forc-util" }
ropey = "1.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.60"
sway-core = { version = "0.20.2", path = "../sway-core" }
sway-fmt = { version = "0.20.2", path = "../sway-fmt" }
sway-types = { version = "0.20.2", path = "../sway-types" }
sway-utils = { version = "0.20.2", path = "../sway-utils" }
tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
tower-lsp = "0.17"
tracing = "0.1"
[dev-dependencies]
async-trait = "0.1"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
tower = { version = "0.4.12", default-features = false, features = ["util"] }