mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 17:07:26 +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(),
|
range: Default::default(),
|
||||||
label: format!("cargo {} -p {}", cmd, spec.package),
|
label: format!("cargo {} -p {}", cmd, spec.package),
|
||||||
bin: "cargo".to_string(),
|
bin: "cargo".to_string(),
|
||||||
args: {
|
args: vec![cmd.to_string(), "--package".to_string(), spec.package.clone()],
|
||||||
let mut args = vec![cmd.to_string()];
|
|
||||||
spec.clone().push_to(&mut args);
|
|
||||||
args
|
|
||||||
},
|
|
||||||
extra_args: Vec::new(),
|
extra_args: Vec::new(),
|
||||||
env: FxHashMap::default(),
|
env: FxHashMap::default(),
|
||||||
cwd: workspace_root.map(|root| root.to_owned()),
|
cwd: workspace_root.map(|root| root.to_owned()),
|
||||||
|
|
|
@ -149,7 +149,7 @@ fn main() {}
|
||||||
"cwd": server.path().join("foo")
|
"cwd": server.path().join("foo")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [ "check", "--package", "foo", "--test", "spam" ],
|
"args": [ "check", "--package", "foo" ],
|
||||||
"extraArgs": [],
|
"extraArgs": [],
|
||||||
"bin": "cargo",
|
"bin": "cargo",
|
||||||
"env": {},
|
"env": {},
|
||||||
|
@ -161,7 +161,7 @@ fn main() {}
|
||||||
"cwd": server.path().join("foo")
|
"cwd": server.path().join("foo")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [ "test", "--package", "foo", "--test", "spam" ],
|
"args": [ "test", "--package", "foo" ],
|
||||||
"extraArgs": [],
|
"extraArgs": [],
|
||||||
"bin": "cargo",
|
"bin": "cargo",
|
||||||
"env": {},
|
"env": {},
|
||||||
|
|
Loading…
Reference in a new issue