-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
42 lines (37 loc) · 981 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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "move-language-server"
version = "0.4.0"
authors = ["Maxim Kurnikov <[email protected]>"]
edition = "2018"
[dependencies]
log = "0.4.8"
env_logger = "0.7.1"
anyhow = "1.0.31"
lsp-types = "0.89.0"
lsp-server = "0.5.0"
serde = { version = "=1.0.118", features = ["derive"] }
serde_json = "1.0.48"
threadpool = "1.8.1"
crossbeam-channel = "0.5.1"
walkdir = "2.3.1"
codespan = "0.8.0"
codespan-reporting = "0.8.0"
codespan9 = { package = "codespan", version = "0.9.2" }
codespan-reporting9 = { package = "codespan-reporting", version = "0.9.2" }
hex = "0.4.2"
resources = { path = "../resources" }
lang = { path = "../lang" }
libra = { package = "dfibra", git = "https://github.com/dfinance/libra.git", branch = "release-1.0" }
[features]
libra_address = [
"lang/libra_address",
"libra/libra_address",
]
dfinance_address = [
"lang/dfinance_address",
"libra/dfinance_address",
]
ps_address = [
"lang/ps_address",
"libra/ps_address"
]