Rename ra_db -> base_db

This commit is contained in:
Aleksey Kladov
2020-08-13 16:25:38 +02:00
parent 902f74c269
commit ed20a857f4
111 changed files with 183 additions and 183 deletions

View File

@@ -6,6 +6,10 @@ use std::{
time::{SystemTime, UNIX_EPOCH},
};
use base_db::{
salsa::{self, ParallelDatabase},
SourceDatabaseExt,
};
use hir::{
db::{AstDatabase, DefDatabase, HirDatabase},
original_range, AssocItem, Crate, HasSource, HirDisplay, ModuleDef,
@@ -14,10 +18,6 @@ use hir_def::FunctionId;
use hir_ty::{Ty, TypeWalk};
use itertools::Itertools;
use oorandom::Rand32;
use ra_db::{
salsa::{self, ParallelDatabase},
SourceDatabaseExt,
};
use rayon::prelude::*;
use rustc_hash::FxHashSet;
use stdx::format_to;