diff options
author | Daniel <kingdread@gmx.de> | 2020-04-21 15:07:41 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-04-21 15:07:41 +0200 |
commit | fe88f503676091c53d31db99ca4af36fe08dcdc8 (patch) | |
tree | 67c9446fadc04e44f58b5f4a62036894444690e7 /src | |
parent | efbc3fb2131b8c69a88e0622ad4b120c2c48ed85 (diff) | |
download | raidgrep-fe88f503676091c53d31db99ca4af36fe08dcdc8.tar.gz raidgrep-fe88f503676091c53d31db99ca4af36fe08dcdc8.tar.bz2 raidgrep-fe88f503676091c53d31db99ca4af36fe08dcdc8.zip |
remove unused imports
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index ab66848..c89614b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,7 @@ use std::collections::HashMap; use std::fmt; use std::fs::File; -use std::io::{BufReader, Read, Seek, Write}; +use std::io::{BufReader, Read, Seek}; use std::path::PathBuf; use std::str::FromStr; @@ -11,7 +11,7 @@ use chrono::{NaiveDateTime, Weekday}; use colored::Colorize; use log::debug; use num_traits::cast::FromPrimitive; -use rustyline::{error::ReadlineError, Editor}; +use rustyline::Editor; use structopt::StructOpt; use walkdir::{DirEntry, WalkDir}; |