mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 11:59:49 +00:00
Use --workspace when loading extern resources
https://github.com/rust-analyzer/rust-analyzer/issues/5040#issuecomment-759853153
This commit is contained in:
parent
d635806ea5
commit
47c5ec4b94
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ pub(crate) fn load_extern_resources(
|
|||
progress: &dyn Fn(String),
|
||||
) -> Result<ExternResources> {
|
||||
let mut cmd = Command::new(toolchain::cargo());
|
||||
cmd.args(&["check", "--message-format=json", "--manifest-path"]).arg(cargo_toml);
|
||||
cmd.args(&["check", "--workspace", "--message-format=json", "--manifest-path"]).arg(cargo_toml);
|
||||
|
||||
// --all-targets includes tests, benches and examples in addition to the
|
||||
// default lib and bins. This is an independent concept from the --targets
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue