diff options
author | Aleksey Kladov <[email protected]> | 2020-03-31 17:43:22 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-31 18:29:11 +0100 |
commit | 8d278297815e9034cc52670b468732e7d7ff7d55 (patch) | |
tree | 5d0ae6e3e1184b00cdfc293c12525fa90cb79f4d /crates/ra_flycheck | |
parent | 37a01de42c1bd435710741a2e15ceee1efaccf39 (diff) |
Reduce deps
Diffstat (limited to 'crates/ra_flycheck')
-rw-r--r-- | crates/ra_flycheck/src/lib.rs | 2 |
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 | } |
244 | impl error::Error for CargoError {} | 244 | impl error::Error for CargoError {} |
245 | 245 | ||
246 | pub fn run_cargo( | 246 | fn 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, |