You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/rust-analyzer/src/reload.rs
+5
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ use ide_db::{
27
27
use itertools::Itertools;
28
28
use proc_macro_api::{MacroDylib,ProcMacroServer};
29
29
use project_model::{PackageRoot,ProjectWorkspace,WorkspaceBuildScripts};
30
+
use stdx::format_to;
30
31
use syntax::SmolStr;
31
32
use triomphe::Arc;
32
33
use vfs::{file_set::FileSetConfig,AbsPath,AbsPathBuf,ChangeKind};
@@ -134,6 +135,10 @@ impl GlobalState {
134
135
message.push_str("Failed to discover workspace.\n");
135
136
message.push_str("Consider adding the `Cargo.toml` of the workspace to the [`linkedProjects`](https://rust-analyzer.github.io/manual.html#rust-analyzer.linkedProjects) setting.\n\n");
0 commit comments