vscode-rust
vscode-rust copied to clipboard
The VS Code Rust extension is parsing infinitely when using Cargo's workspace traits.
The language server is running tireless whenever you create a new workspace in VS Code. It never stops unless you add any depending relationships between Crates, but Cargo standards seem not to mean it. See "Cargo doesn’t assume that crates in a workspace will depend on each other, so we need to be explicit about the dependency relationships between the crates." According to The Rust Programming Language(ch14-03-cargo-workspaces)
Here posts some proofs: vscode_rust_extension_issue_862
I'm also experiencing this, making the extension unusable.