summaryrefslogtreecommitdiffstats
path: root/lib/etc/libimaginteraction/src
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-08-29 17:21:52 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-08-31 10:56:15 +0200
commitae5255c7c7ed7c40c44240218b957be383ad698d (patch)
tree24807f94054744d156b1710f307b42218503f944 /lib/etc/libimaginteraction/src
parentc987130cc1adca9c8074e7e1afe235c4b3f7157e (diff)
Remove unused crate imports
This patch removes unused crate imports reported by newer rust versions. Some crates were only required for tests, some only for tests with macro_import - these things were fixed with feature gates.
Diffstat (limited to 'lib/etc/libimaginteraction/src')
-rw-r--r--lib/etc/libimaginteraction/src/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/etc/libimaginteraction/src/lib.rs b/lib/etc/libimaginteraction/src/lib.rs
index b0663f8b..cd38071a 100644
--- a/lib/etc/libimaginteraction/src/lib.rs
+++ b/lib/etc/libimaginteraction/src/lib.rs
@@ -33,18 +33,14 @@
while_true,
)]
-extern crate spinner;
extern crate interactor;
extern crate ansi_term;
#[macro_use] extern crate lazy_static;
extern crate regex;
extern crate clap;
extern crate toml;
-extern crate rustyline;
-extern crate libimagentryfilter;
extern crate libimagstore;
-extern crate libimagutil;
#[macro_use] extern crate libimagerror;
pub mod ask;