diff options
Diffstat (limited to 'crates/ra_ide_api/src/lib.rs')
-rw-r--r-- | crates/ra_ide_api/src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ra_ide_api/src/lib.rs b/crates/ra_ide_api/src/lib.rs index 3a0d2dbbe..7b47d7b6d 100644 --- a/crates/ra_ide_api/src/lib.rs +++ b/crates/ra_ide_api/src/lib.rs | |||
@@ -28,11 +28,13 @@ use std::{fmt, sync::Arc}; | |||
28 | 28 | ||
29 | use ra_syntax::{SourceFile, TreeArc, TextRange, TextUnit}; | 29 | use ra_syntax::{SourceFile, TreeArc, TextRange, TextUnit}; |
30 | use ra_text_edit::TextEdit; | 30 | use ra_text_edit::TextEdit; |
31 | use ra_db::{SyntaxDatabase, FilesDatabase, BaseDatabase}; | 31 | use ra_db::{ |
32 | SyntaxDatabase, FilesDatabase, BaseDatabase, | ||
33 | salsa::{self, ParallelDatabase}, | ||
34 | }; | ||
32 | use rayon::prelude::*; | 35 | use rayon::prelude::*; |
33 | use relative_path::RelativePathBuf; | 36 | use relative_path::RelativePathBuf; |
34 | use rustc_hash::FxHashMap; | 37 | use rustc_hash::FxHashMap; |
35 | use salsa::ParallelDatabase; | ||
36 | 38 | ||
37 | use crate::{ | 39 | use crate::{ |
38 | symbol_index::{FileSymbol, SymbolIndex}, | 40 | symbol_index::{FileSymbol, SymbolIndex}, |