aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_flycheck/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-31 17:43:22 +0100
committerAleksey Kladov <[email protected]>2020-03-31 18:29:11 +0100
commit8d278297815e9034cc52670b468732e7d7ff7d55 (patch)
tree5d0ae6e3e1184b00cdfc293c12525fa90cb79f4d /crates/ra_flycheck/src/lib.rs
parent37a01de42c1bd435710741a2e15ceee1efaccf39 (diff)
Reduce deps
Diffstat (limited to 'crates/ra_flycheck/src/lib.rs')
-rw-r--r--crates/ra_flycheck/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_flycheck/src/lib.rs b/crates/ra_flycheck/src/lib.rs
index 77ede8f63..38940a77b 100644
--- a/crates/ra_flycheck/src/lib.rs
+++ b/crates/ra_flycheck/src/lib.rs
@@ -243,7 +243,7 @@ impl fmt::Display for CargoError {
243} 243}
244impl error::Error for CargoError {} 244impl error::Error for CargoError {}
245 245
246pub fn run_cargo( 246fn run_cargo(
247 args: &[String], 247 args: &[String],
248 current_dir: Option<&Path>, 248 current_dir: Option<&Path>,
249 on_message: &mut dyn FnMut(cargo_metadata::Message) -> bool, 249 on_message: &mut dyn FnMut(cargo_metadata::Message) -> bool,