diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-09 15:53:12 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-09 15:53:12 +0900 |
| commit | c0f93a6ea35c41859c21da7d90fb142fa34a2df4 (patch) | |
| tree | 8dc9039ace091ef3011957e64057a7a8a910ef24 /src/format-diff/main.rs | |
| parent | e28fae99747af538a30452413692a015da93b490 (diff) | |
cargo +nightly fix --edition-idioms
Diffstat (limited to 'src/format-diff/main.rs')
| -rw-r--r-- | src/format-diff/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format-diff/main.rs b/src/format-diff/main.rs index aacfa12d437..5ffff79811c 100644 --- a/src/format-diff/main.rs +++ b/src/format-diff/main.rs @@ -14,16 +14,16 @@ #![deny(warnings)] -extern crate env_logger; +use env_logger; #[macro_use] extern crate failure; -extern crate getopts; +use getopts; #[macro_use] extern crate log; -extern crate regex; +use regex; #[macro_use] extern crate serde_derive; -extern crate serde_json as json; +use serde_json as json; use std::collections::HashSet; use std::io::{self, BufRead}; |
