aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorDavid Lattimore <[email protected]>2020-06-30 00:31:45 +0100
committerDavid Lattimore <[email protected]>2020-06-30 00:31:45 +0100
commit867f29559f0f49bb19ff4625e4bd59b278474bde (patch)
treed3f07b733784ea3e0c49d408a2144c2f0ecc97d5 /crates
parent93a91ae9defed0b4e5148b4af6feb90dc75289c0 (diff)
Moved new deps to CLI-only section
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index 97d9bf5d4..803755106 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -34,10 +34,8 @@ stdx = { path = "../stdx" }
34lsp-server = "0.3.3" 34lsp-server = "0.3.3"
35flycheck = { path = "../flycheck" } 35flycheck = { path = "../flycheck" }
36ra_ide = { path = "../ra_ide" } 36ra_ide = { path = "../ra_ide" }
37ra_ide_db = { path = "../ra_ide_db" }
38ra_prof = { path = "../ra_prof" } 37ra_prof = { path = "../ra_prof" }
39ra_project_model = { path = "../ra_project_model" } 38ra_project_model = { path = "../ra_project_model" }
40ra_ssr = { path = "../ra_ssr" }
41ra_syntax = { path = "../ra_syntax" } 39ra_syntax = { path = "../ra_syntax" }
42ra_text_edit = { path = "../ra_text_edit" } 40ra_text_edit = { path = "../ra_text_edit" }
43vfs = { path = "../vfs" } 41vfs = { path = "../vfs" }
@@ -47,6 +45,8 @@ ra_toolchain = { path = "../ra_toolchain" }
47 45
48# This should only be used in CLI 46# This should only be used in CLI
49ra_db = { path = "../ra_db" } 47ra_db = { path = "../ra_db" }
48ra_ide_db = { path = "../ra_ide_db" }
49ra_ssr = { path = "../ra_ssr" }
50hir = { path = "../ra_hir", package = "ra_hir" } 50hir = { path = "../ra_hir", package = "ra_hir" }
51hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } 51hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
52hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" } 52hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }