Don't add cargo to requiresServerReloadOpts
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index c0a1b3f..5dc2c41 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -31,7 +31,7 @@
workspaceState: vscode.Memento;
private readonly rootSection = "rust-analyzer";
- private readonly requiresServerReloadOpts = ["cargo", "server", "files", "showSyntaxTree"].map(
+ private readonly requiresServerReloadOpts = ["server", "files", "showSyntaxTree"].map(
(opt) => `${this.rootSection}.${opt}`,
);