Merge pull request #887 from matthiasbeyer/libimagentryfilter/remove-unused-import

Remove unused imports
This commit is contained in:
Matthias Beyer 2017-02-04 11:52:53 +01:00 committed by GitHub
commit 6585677d31
10 changed files with 6 additions and 16 deletions

View file

@ -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;

View file

@ -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;

View file

@ -32,8 +32,6 @@
while_true,
)]
#[macro_use] extern crate log;
extern crate filters;
extern crate itertools;
extern crate regex;

View file

@ -31,7 +31,6 @@
while_true,
)]
#[macro_use] extern crate log;
extern crate crossbeam;
extern crate hoedown;
extern crate url;

View file

@ -33,7 +33,6 @@
while_true,
)]
#[macro_use] extern crate log;
extern crate glob;
extern crate toml;

View file

@ -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;

View file

@ -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");

View file

@ -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;

View file

@ -20,6 +20,3 @@ log = "0.3"
chrono = "0.2"
regex = "0.2"
[dependencies.libimagerror]
path = "../libimagerror"

View file

@ -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;