Remove unwanted dependency

This commit is contained in:
Aleksey Kladov
2020-07-08 18:22:57 +02:00
parent 35e4bb3506
commit 7ae696ba76
8 changed files with 15 additions and 16 deletions

View File

@@ -5,9 +5,10 @@ use std::{env, path::Path, str::FromStr, sync::Arc, time::Instant};
use anyhow::{format_err, Result};
use ra_db::{
salsa::{Database, Durability},
AbsPathBuf, FileId,
FileId,
};
use ra_ide::{Analysis, AnalysisChange, AnalysisHost, CompletionConfig, FilePosition, LineCol};
use vfs::AbsPathBuf;
use crate::cli::{load_cargo::load_cargo, Verbosity};

View File

@@ -4,10 +4,10 @@ use std::{path::Path, sync::Arc};
use anyhow::Result;
use crossbeam_channel::{unbounded, Receiver};
use ra_db::{AbsPathBuf, CrateGraph};
use ra_db::CrateGraph;
use ra_ide::{AnalysisChange, AnalysisHost};
use ra_project_model::{CargoConfig, ProcMacroClient, ProjectManifest, ProjectWorkspace};
use vfs::{loader::Handle, AbsPath};
use vfs::{loader::Handle, AbsPath, AbsPathBuf};
use crate::reload::{ProjectFolders, SourceRootConfig};