mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
fix usages after rename
This commit is contained in:
parent
6bca91af53
commit
5b573deb20
30 changed files with 4280 additions and 31 deletions
|
@ -1,10 +1,10 @@
|
|||
use std::{
|
||||
path::{PathBuf},
|
||||
path::PathBuf,
|
||||
sync::Arc,
|
||||
};
|
||||
|
||||
use languageserver_types::Url;
|
||||
use ra_analysis::{
|
||||
use ra_ide_api::{
|
||||
Analysis, AnalysisChange, AnalysisHost, CrateGraph, FileId, LibraryData,
|
||||
SourceRootId
|
||||
};
|
||||
|
@ -12,7 +12,7 @@ use ra_vfs::{Vfs, VfsChange, VfsFile, VfsRoot};
|
|||
use rustc_hash::FxHashMap;
|
||||
use relative_path::RelativePathBuf;
|
||||
use parking_lot::RwLock;
|
||||
use failure::{format_err};
|
||||
use failure::format_err;
|
||||
|
||||
use crate::{
|
||||
project_model::{CargoWorkspace, TargetKind},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue