diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2021-02-16 23:33:20 -0500 |
|---|---|---|
| committer | Caleb Cartwright <calebcartwright@users.noreply.github.com> | 2021-02-18 20:20:29 -0600 |
| commit | c3a51111061e65a08ebce05c42e0d89ee1fae83a (patch) | |
| tree | 1153d11aba663fefe1f21ba3a44702c12fc5fff0 /src/format-diff | |
| parent | 432e09e89f7e30fd418b43b1473b87c146d90674 (diff) | |
| download | rust-c3a51111061e65a08ebce05c42e0d89ee1fae83a.tar.gz rust-c3a51111061e65a08ebce05c42e0d89ee1fae83a.zip | |
Fix some clippy warnings
This commit can be replicated with `cargo clippy --fix -Z unstable-options && cargo +nightly-2021-02-10 fmt`.
Diffstat (limited to 'src/format-diff')
| -rw-r--r-- | src/format-diff/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/format-diff/main.rs b/src/format-diff/main.rs index 8a8bb9356ca..c751932273b 100644 --- a/src/format-diff/main.rs +++ b/src/format-diff/main.rs @@ -4,10 +4,9 @@ #![deny(warnings)] -use env_logger; #[macro_use] extern crate log; -use regex; + use serde::{Deserialize, Serialize}; use serde_json as json; use thiserror::Error; |
