diff options
author | Aleksey Kladov <[email protected]> | 2019-01-08 19:30:32 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-08 19:30:32 +0000 |
commit | fa3c9ce3921b6a3f67222bf4f9b4efdf4f11c2a5 (patch) | |
tree | 7c31b3941d011c475141e92104464ec4cced6ad8 /crates/ra_cli/src | |
parent | 1967884d6836219ee78a754ca5c66ac781351559 (diff) |
fix usages after rename
Diffstat (limited to 'crates/ra_cli/src')
-rw-r--r-- | crates/ra_cli/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_cli/src/main.rs b/crates/ra_cli/src/main.rs index 0d12f3a88..43fb2fc4c 100644 --- a/crates/ra_cli/src/main.rs +++ b/crates/ra_cli/src/main.rs | |||
@@ -2,7 +2,7 @@ use std::{fs, io::Read, path::Path, time::Instant}; | |||
2 | 2 | ||
3 | use clap::{App, Arg, SubCommand}; | 3 | use clap::{App, Arg, SubCommand}; |
4 | use join_to_string::join; | 4 | use join_to_string::join; |
5 | use ra_editor::{extend_selection, file_structure, syntax_tree}; | 5 | use ra_ide_api_light::{extend_selection, file_structure, syntax_tree}; |
6 | use ra_syntax::{SourceFile, TextRange, TreePtr, AstNode}; | 6 | use ra_syntax::{SourceFile, TextRange, TreePtr, AstNode}; |
7 | use tools::collect_tests; | 7 | use tools::collect_tests; |
8 | 8 | ||