mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 08:57:34 +00:00
parent
3c96de5380
commit
247d32cbfd
2 changed files with 3 additions and 7 deletions
|
@ -400,11 +400,7 @@ pub fn handle_runnables(
|
|||
range: Default::default(),
|
||||
label: format!("cargo {} -p {}", cmd, spec.package),
|
||||
bin: "cargo".to_string(),
|
||||
args: {
|
||||
let mut args = vec![cmd.to_string()];
|
||||
spec.clone().push_to(&mut args);
|
||||
args
|
||||
},
|
||||
args: vec![cmd.to_string(), "--package".to_string(), spec.package.clone()],
|
||||
extra_args: Vec::new(),
|
||||
env: FxHashMap::default(),
|
||||
cwd: workspace_root.map(|root| root.to_owned()),
|
||||
|
|
|
@ -149,7 +149,7 @@ fn main() {}
|
|||
"cwd": server.path().join("foo")
|
||||
},
|
||||
{
|
||||
"args": [ "check", "--package", "foo", "--test", "spam" ],
|
||||
"args": [ "check", "--package", "foo" ],
|
||||
"extraArgs": [],
|
||||
"bin": "cargo",
|
||||
"env": {},
|
||||
|
@ -161,7 +161,7 @@ fn main() {}
|
|||
"cwd": server.path().join("foo")
|
||||
},
|
||||
{
|
||||
"args": [ "test", "--package", "foo", "--test", "spam" ],
|
||||
"args": [ "test", "--package", "foo" ],
|
||||
"extraArgs": [],
|
||||
"bin": "cargo",
|
||||
"env": {},
|
||||
|
|
Loading…
Reference in a new issue