aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-17 16:41:53 +0000
committerAleksey Kladov <[email protected]>2020-02-17 16:41:53 +0000
commit90e61ac75dcf4cdae41de4df41557f6ae5186a9a (patch)
tree2e987360fb543a5acb5d64384a2299980a90778e /crates
parentd7be1da8df45027ce18b8af9da68ed98b9a454cc (diff)
Sort deps
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_lsp_server/Cargo.toml29
1 files changed, 15 insertions, 14 deletions
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml
index fdf81ed87..0066929c0 100644
--- a/crates/ra_lsp_server/Cargo.toml
+++ b/crates/ra_lsp_server/Cargo.toml
@@ -8,27 +8,28 @@ authors = ["rust-analyzer developers"]
8doctest = false 8doctest = false
9 9
10[dependencies] 10[dependencies]
11threadpool = "1.7.1"
12relative-path = "1.0.0"
13serde_json = "1.0.34"
14serde = { version = "1.0.83", features = ["derive"] }
15crossbeam-channel = "0.4" 11crossbeam-channel = "0.4"
12either = "1.5"
13env_logger = { version = "0.7.1", default-features = false }
14jod-thread = "0.1.0"
16log = "0.4.3" 15log = "0.4.3"
17lsp-types = { version = "0.70.0", features = ["proposed"] } 16lsp-types = { version = "0.70.0", features = ["proposed"] }
18rustc-hash = "1.0"
19parking_lot = "0.10.0" 17parking_lot = "0.10.0"
20jod-thread = "0.1.0" 18relative-path = "1.0.0"
21ra_vfs = "0.5.0" 19rustc-hash = "1.0"
22ra_syntax = { path = "../ra_syntax" } 20serde = { version = "1.0.83", features = ["derive"] }
23ra_text_edit = { path = "../ra_text_edit" } 21serde_json = "1.0.34"
24ra_ide = { path = "../ra_ide" } 22threadpool = "1.7.1"
23
25lsp-server = "0.3.0" 24lsp-server = "0.3.0"
26ra_project_model = { path = "../ra_project_model" } 25ra_cargo_watch = { path = "../ra_cargo_watch" }
26ra_ide = { path = "../ra_ide" }
27ra_prof = { path = "../ra_prof" } 27ra_prof = { path = "../ra_prof" }
28ra_project_model = { path = "../ra_project_model" }
29ra_syntax = { path = "../ra_syntax" }
30ra_text_edit = { path = "../ra_text_edit" }
31ra_vfs = "0.5.0"
28ra_vfs_glob = { path = "../ra_vfs_glob" } 32ra_vfs_glob = { path = "../ra_vfs_glob" }
29env_logger = { version = "0.7.1", default-features = false }
30ra_cargo_watch = { path = "../ra_cargo_watch" }
31either = "1.5"
32 33
33[target.'cfg(windows)'.dependencies] 34[target.'cfg(windows)'.dependencies]
34winapi = "0.3" 35winapi = "0.3"