aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-30 12:28:54 +0000
committerAleksey Kladov <[email protected]>2018-12-30 12:28:54 +0000
commit0e90e0436a5433c61f932c254d1cc7400022a940 (patch)
treeec67cbe1bb77ad46fbf027e63ea3ba70a8741323
parent8d1df9834c96bd464c309383afdd8edea0576ae0 (diff)
remove runtime dependency on tools
-rw-r--r--crates/ra_lsp_server/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml
index f8f91e5e7..646df2497 100644
--- a/crates/ra_lsp_server/Cargo.toml
+++ b/crates/ra_lsp_server/Cargo.toml
@@ -33,8 +33,8 @@ ra_text_edit = { path = "../ra_text_edit" }
33ra_analysis = { path = "../ra_analysis" } 33ra_analysis = { path = "../ra_analysis" }
34gen_lsp_server = { path = "../gen_lsp_server" } 34gen_lsp_server = { path = "../gen_lsp_server" }
35ra_vfs = { path = "../ra_vfs" } 35ra_vfs = { path = "../ra_vfs" }
36tools = { path = "../tools" }
37 36
38[dev-dependencies] 37[dev-dependencies]
39tempdir = "0.3.7" 38tempdir = "0.3.7"
40test_utils = { path = "../test_utils" } 39test_utils = { path = "../test_utils" }
40tools = { path = "../tools" }