We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15424c commit b9fbb3dCopy full SHA for b9fbb3d
crates/rust-analyzer/src/main_loop.rs
@@ -116,10 +116,8 @@ pub fn main_loop(
116
Err(e) => {
117
log::error!("loading workspace failed: {:?}", e);
118
119
- if let Some(ra_project_model::CargoTomlNotFoundError {
120
- searched_at: _,
121
- reason: _,
122
- }) = e.downcast_ref()
+ if let Some(ra_project_model::CargoTomlNotFoundError { .. }) =
+ e.downcast_ref()
123
{
124
if !feature_flags.get("notifications.cargo-toml-not-found") {
125
continue;
0 commit comments