From 6665fd05a9a72bdaa1c56d30cb15fbf939ea84d9 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 12 Feb 2019 20:47:27 +0100 Subject: Run cargo fmt on sources. --- src/main.rs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index b89a381..3a2f4cc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,16 +15,15 @@ // along with this program. If not, see . use checkpw::{check, Password}; -use std::{env, error::Error, thread, time, process}; +use std::{env, error::Error, process, thread, time}; fn print_usage() { println!("Usage: checkpw ..."); } fn main() { - let (args, passwords) : (Vec, Vec) = env::args() - .skip(1) - .partition(|arg| arg.starts_with('-')); + let (args, passwords): (Vec, Vec) = + env::args().skip(1).partition(|arg| arg.starts_with('-')); if args.is_empty() && passwords.is_empty() { print_usage(); @@ -37,8 +36,7 @@ fn main() { for pw in passwords { if first_round { first_round = false; - } - else { + } else { thread::sleep(time::Duration::new(1, 0)); } @@ -48,8 +46,7 @@ fn main() { if num > 0 { println!("Password is PWNED! It was found in {} breaches.", num); pwn_count += 1; - } - else { + } else { println!("Password was not found in any breaches"); } } -- cgit v1.2.3