aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/status.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/src/status.rs')
-rw-r--r--crates/ra_ide/src/status.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/status.rs b/crates/ra_ide/src/status.rs
index 08e6f69cb..009bb662f 100644
--- a/crates/ra_ide/src/status.rs
+++ b/crates/ra_ide/src/status.rs
@@ -1,6 +1,7 @@
1use std::{fmt, iter::FromIterator, sync::Arc}; 1use std::{fmt, iter::FromIterator, sync::Arc};
2 2
3use hir::MacroFile; 3use hir::MacroFile;
4use profile::{memory_usage, Bytes};
4use ra_db::{ 5use ra_db::{
5 salsa::debug::{DebugQueryTable, TableEntry}, 6 salsa::debug::{DebugQueryTable, TableEntry},
6 FileTextQuery, SourceRootId, 7 FileTextQuery, SourceRootId,
@@ -9,7 +10,6 @@ use ra_ide_db::{
9 symbol_index::{LibrarySymbolsQuery, SymbolIndex}, 10 symbol_index::{LibrarySymbolsQuery, SymbolIndex},
10 RootDatabase, 11 RootDatabase,
11}; 12};
12use ra_prof::{memory_usage, Bytes};
13use ra_syntax::{ast, Parse, SyntaxNode}; 13use ra_syntax::{ast, Parse, SyntaxNode};
14use rustc_hash::FxHashMap; 14use rustc_hash::FxHashMap;
15 15