aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor
diff options
context:
space:
mode:
authorBernardo <[email protected]>2018-12-25 20:26:36 +0000
committerBernardo <[email protected]>2018-12-25 20:26:36 +0000
commit1cda43aafd623b400f5916b1d3727b56c136081b (patch)
tree31aaa3c1b6f48b5171eb4758ff82408d7041afaf /crates/ra_editor
parente9c186e48a77b536053c0f75ac9ea5b2fd322cfa (diff)
test code and dependency cleanup
Diffstat (limited to 'crates/ra_editor')
-rw-r--r--crates/ra_editor/Cargo.toml3
-rw-r--r--crates/ra_editor/src/lib.rs3
2 files changed, 2 insertions, 4 deletions
diff --git a/crates/ra_editor/Cargo.toml b/crates/ra_editor/Cargo.toml
index 1ad99af28..f39fe4af6 100644
--- a/crates/ra_editor/Cargo.toml
+++ b/crates/ra_editor/Cargo.toml
@@ -14,7 +14,6 @@ rustc-hash = "1.0"
14ra_syntax = { path = "../ra_syntax" } 14ra_syntax = { path = "../ra_syntax" }
15ra_text_edit = { path = "../ra_text_edit" } 15ra_text_edit = { path = "../ra_text_edit" }
16 16
17proptest = "0.8.7"
18
19[dev-dependencies] 17[dev-dependencies]
20test_utils = { path = "../test_utils" } 18test_utils = { path = "../test_utils" }
19proptest = "0.8.7"
diff --git a/crates/ra_editor/src/lib.rs b/crates/ra_editor/src/lib.rs
index 2e3635ea0..619497f0b 100644
--- a/crates/ra_editor/src/lib.rs
+++ b/crates/ra_editor/src/lib.rs
@@ -2,8 +2,7 @@ mod code_actions;
2mod extend_selection; 2mod extend_selection;
3mod folding_ranges; 3mod folding_ranges;
4mod line_index; 4mod line_index;
5// public for benchmarkig 5mod line_index_utils;
6pub mod line_index_utils;
7mod symbols; 6mod symbols;
8#[cfg(test)] 7#[cfg(test)]
9mod test_utils; 8mod test_utils;