Merge pull request #887 from matthiasbeyer/libimagentryfilter/remove-unused-import
Remove unused imports
This commit is contained in:
commit
6585677d31
10 changed files with 6 additions and 16 deletions
|
@ -34,7 +34,7 @@
|
|||
|
||||
#[macro_use] extern crate log;
|
||||
extern crate clap;
|
||||
#[macro_use] extern crate semver;
|
||||
extern crate semver;
|
||||
extern crate toml;
|
||||
extern crate url;
|
||||
#[macro_use] extern crate version;
|
||||
|
|
|
@ -38,10 +38,10 @@ extern crate semver;
|
|||
extern crate toml;
|
||||
#[macro_use] extern crate version;
|
||||
|
||||
extern crate libimagentryview;
|
||||
extern crate libimagerror;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagstore;
|
||||
extern crate libimagentryview;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
||||
use std::process::exit;
|
||||
use std::path::PathBuf;
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
while_true,
|
||||
)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
|
||||
extern crate filters;
|
||||
extern crate itertools;
|
||||
extern crate regex;
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
while_true,
|
||||
)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
extern crate crossbeam;
|
||||
extern crate hoedown;
|
||||
extern crate url;
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
while_true,
|
||||
)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
extern crate glob;
|
||||
extern crate toml;
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
|
||||
extern crate spinner;
|
||||
extern crate interactor;
|
||||
#[macro_use] extern crate log;
|
||||
extern crate ansi_term;
|
||||
#[macro_use] extern crate lazy_static;
|
||||
extern crate regex;
|
||||
|
@ -43,7 +42,7 @@ extern crate rustyline;
|
|||
|
||||
extern crate libimagentryfilter;
|
||||
extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagutil;
|
||||
extern crate libimagutil;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
||||
pub mod ask;
|
||||
|
|
|
@ -41,7 +41,7 @@ extern crate walkdir;
|
|||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
#[macro_use] extern crate libimagutil;
|
||||
extern crate libimagutil;
|
||||
extern crate libimagentrylist;
|
||||
|
||||
module_entry_path_mod!("ref");
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate itertools;
|
||||
extern crate itertools;
|
||||
#[cfg(unix)] extern crate xdg_basedir;
|
||||
extern crate env_logger;
|
||||
extern crate tempfile;
|
||||
|
|
|
@ -20,6 +20,3 @@ log = "0.3"
|
|||
chrono = "0.2"
|
||||
regex = "0.2"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
|
|
|
@ -37,8 +37,6 @@ extern crate regex;
|
|||
#[macro_use] extern crate lazy_static;
|
||||
#[macro_use] extern crate log;
|
||||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
||||
pub mod cli;
|
||||
pub mod date;
|
||||
pub mod datetime;
|
||||
|
|
Loading…
Reference in a new issue