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;
|
#[macro_use] extern crate log;
|
||||||
extern crate clap;
|
extern crate clap;
|
||||||
#[macro_use] extern crate semver;
|
extern crate semver;
|
||||||
extern crate toml;
|
extern crate toml;
|
||||||
extern crate url;
|
extern crate url;
|
||||||
#[macro_use] extern crate version;
|
#[macro_use] extern crate version;
|
||||||
|
|
|
@ -38,10 +38,10 @@ extern crate semver;
|
||||||
extern crate toml;
|
extern crate toml;
|
||||||
#[macro_use] extern crate version;
|
#[macro_use] extern crate version;
|
||||||
|
|
||||||
|
extern crate libimagentryview;
|
||||||
|
extern crate libimagerror;
|
||||||
extern crate libimagrt;
|
extern crate libimagrt;
|
||||||
extern crate libimagstore;
|
extern crate libimagstore;
|
||||||
extern crate libimagentryview;
|
|
||||||
#[macro_use] extern crate libimagerror;
|
|
||||||
|
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
|
@ -32,8 +32,6 @@
|
||||||
while_true,
|
while_true,
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
|
||||||
|
|
||||||
extern crate filters;
|
extern crate filters;
|
||||||
extern crate itertools;
|
extern crate itertools;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
while_true,
|
while_true,
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
|
||||||
extern crate crossbeam;
|
extern crate crossbeam;
|
||||||
extern crate hoedown;
|
extern crate hoedown;
|
||||||
extern crate url;
|
extern crate url;
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
while_true,
|
while_true,
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
|
||||||
extern crate glob;
|
extern crate glob;
|
||||||
extern crate toml;
|
extern crate toml;
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
|
|
||||||
extern crate spinner;
|
extern crate spinner;
|
||||||
extern crate interactor;
|
extern crate interactor;
|
||||||
#[macro_use] extern crate log;
|
|
||||||
extern crate ansi_term;
|
extern crate ansi_term;
|
||||||
#[macro_use] extern crate lazy_static;
|
#[macro_use] extern crate lazy_static;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
@ -43,7 +42,7 @@ extern crate rustyline;
|
||||||
|
|
||||||
extern crate libimagentryfilter;
|
extern crate libimagentryfilter;
|
||||||
extern crate libimagstore;
|
extern crate libimagstore;
|
||||||
#[macro_use] extern crate libimagutil;
|
extern crate libimagutil;
|
||||||
#[macro_use] extern crate libimagerror;
|
#[macro_use] extern crate libimagerror;
|
||||||
|
|
||||||
pub mod ask;
|
pub mod ask;
|
||||||
|
|
|
@ -41,7 +41,7 @@ extern crate walkdir;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagstore;
|
#[macro_use] extern crate libimagstore;
|
||||||
#[macro_use] extern crate libimagerror;
|
#[macro_use] extern crate libimagerror;
|
||||||
#[macro_use] extern crate libimagutil;
|
extern crate libimagutil;
|
||||||
extern crate libimagentrylist;
|
extern crate libimagentrylist;
|
||||||
|
|
||||||
module_entry_path_mod!("ref");
|
module_entry_path_mod!("ref");
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
#[macro_use] extern crate itertools;
|
extern crate itertools;
|
||||||
#[cfg(unix)] extern crate xdg_basedir;
|
#[cfg(unix)] extern crate xdg_basedir;
|
||||||
extern crate env_logger;
|
extern crate env_logger;
|
||||||
extern crate tempfile;
|
extern crate tempfile;
|
||||||
|
|
|
@ -20,6 +20,3 @@ log = "0.3"
|
||||||
chrono = "0.2"
|
chrono = "0.2"
|
||||||
regex = "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 lazy_static;
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagerror;
|
|
||||||
|
|
||||||
pub mod cli;
|
pub mod cli;
|
||||||
pub mod date;
|
pub mod date;
|
||||||
pub mod datetime;
|
pub mod datetime;
|
||||||
|
|
Loading…
Reference in a new issue