Skip to content

Commit a17efb9

Browse files
committed
Auto merge of #17456 - panicbit:remove-cargo-extension-warning, r=Veykril
Remove panicbit.cargo extension warning A warning was introduced regarding the incompatabilities between `rust-analyzer` and `panicbit.cargo`'s diagnostics / `cargo check` functionality. This functionality has been removed in the latest version of the cargo extension (`0.3.0`), which is why the warning can be removed now.
2 parents 153a2ba + 79b4dec commit a17efb9

File tree

1 file changed

+0
-10
lines changed
  • src/tools/rust-analyzer/editors/code/src

1 file changed

+0
-10
lines changed

src/tools/rust-analyzer/editors/code/src/main.ts

-10
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,4 @@ function checkConflictingExtensions() {
204204
)
205205
.then(() => {}, console.error);
206206
}
207-
208-
if (vscode.extensions.getExtension("panicbit.cargo")) {
209-
vscode.window
210-
.showWarningMessage(
211-
`You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled, ` +
212-
'you can disable it or set {"cargo.automaticCheck": false} in settings.json to avoid invoking cargo twice',
213-
"Got it",
214-
)
215-
.then(() => {}, console.error);
216-
}
217207
}

0 commit comments

Comments
 (0)