-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
56 lines (43 loc) · 1.29 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
47
48
49
50
51
52
53
54
55
56
[package]
name = "gluon_language-server"
version = "0.18.1-alpha.0"
authors = ["Markus Westerlind <marwes91@gmail.com>"]
description = "Language server providing completion for gluon"
license = "MIT"
repository = "https://github.com/gluon-lang/gluon_language-server"
edition = "2018"
[workspace]
[dependencies]
clap = "2.19.0"
log = "0.4.0"
env_logger = "0.9.0"
anyhow = "1"
codespan-lsp = "0.11.1"
codespan-reporting = "0.11.1"
url = "2"
combine = "4"
async-trait = "0.1"
async-pipe = "0.1"
jsonrpc-core = "18.0.0"
futures = { version = "0.3", features = ["compat"] }
tokio = { version = "1.13.1", features = ["full"] }
tokio-util = { version = "0.6.8", features = ["codec"] }
bytes = "1.1.0"
serde = "1.0.0"
serde_json = "1.0.0"
serde_derive = "1.0.0"
lsp-types = "0.88.0"
debugserver-types = "0.5.0"
gluon = { version = "0.18.1", features = ["serialization", "regex", "rand", "web"] }
gluon_completion = "0.18.0"
gluon_format = "0.18.0"
[dev-dependencies]
pretty_assertions = "1.0.0"
# [patch.crates-io]
# gluon_base = { path = "../gluon/base" }
# gluon_parser = { path = "../gluon/parser" }
# gluon_check = { path = "../gluon/check" }
# gluon_format = { path = "../gluon/format" }
# gluon_completion = { path = "../gluon/completion" }
# gluon_vm = { path = "../gluon/vm" }
# gluon = { path = "../gluon" }