diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-03-31 18:30:18 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-31 18:30:18 +0100 |
commit | f9f0a96b7f60a4e3b7ae6cad4f3e1f0e30e2775a (patch) | |
tree | 5d0ae6e3e1184b00cdfc293c12525fa90cb79f4d /crates/ra_flycheck/src | |
parent | 37a01de42c1bd435710741a2e15ceee1efaccf39 (diff) | |
parent | 8d278297815e9034cc52670b468732e7d7ff7d55 (diff) |
Merge #3795
3795: Reduce deps r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_flycheck/src')
-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, |