diff options
author | Bernardo <[email protected]> | 2018-12-25 20:26:36 +0000 |
---|---|---|
committer | Bernardo <[email protected]> | 2018-12-25 20:26:36 +0000 |
commit | 1cda43aafd623b400f5916b1d3727b56c136081b (patch) | |
tree | 31aaa3c1b6f48b5171eb4758ff82408d7041afaf /crates | |
parent | e9c186e48a77b536053c0f75ac9ea5b2fd322cfa (diff) |
test code and dependency cleanup
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_editor/Cargo.toml | 3 | ||||
-rw-r--r-- | crates/ra_editor/src/lib.rs | 3 |
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" | |||
14 | ra_syntax = { path = "../ra_syntax" } | 14 | ra_syntax = { path = "../ra_syntax" } |
15 | ra_text_edit = { path = "../ra_text_edit" } | 15 | ra_text_edit = { path = "../ra_text_edit" } |
16 | 16 | ||
17 | proptest = "0.8.7" | ||
18 | |||
19 | [dev-dependencies] | 17 | [dev-dependencies] |
20 | test_utils = { path = "../test_utils" } | 18 | test_utils = { path = "../test_utils" } |
19 | proptest = "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; | |||
2 | mod extend_selection; | 2 | mod extend_selection; |
3 | mod folding_ranges; | 3 | mod folding_ranges; |
4 | mod line_index; | 4 | mod line_index; |
5 | // public for benchmarkig | 5 | mod line_index_utils; |
6 | pub mod line_index_utils; | ||
7 | mod symbols; | 6 | mod symbols; |
8 | #[cfg(test)] | 7 | #[cfg(test)] |
9 | mod test_utils; | 8 | mod test_utils; |