summaryrefslogtreecommitdiffstats
path: root/lib/entry/libimagentryview/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-10-30 18:40:52 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-10-30 18:46:28 +0100
commitebe2a9a110b97ee68beb64276bba4327d20d3fea (patch)
tree0ca4be60157e057ae96c9347ba7840c8a11c4914 /lib/entry/libimagentryview/src/lib.rs
parent9b48dc27cd00fcc75917c2702dc8dc4c6493e8d3 (diff)
libimagentryview: Move from error-chain to failure
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'lib/entry/libimagentryview/src/lib.rs')
-rw-r--r--lib/entry/libimagentryview/src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/entry/libimagentryview/src/lib.rs b/lib/entry/libimagentryview/src/lib.rs
index 52f30a0f..19d40baa 100644
--- a/lib/entry/libimagentryview/src/lib.rs
+++ b/lib/entry/libimagentryview/src/lib.rs
@@ -36,16 +36,13 @@
)]
extern crate toml;
-#[macro_use] extern crate error_chain;
extern crate textwrap;
+extern crate failure;
#[cfg(feature = "markdownviewer")]
extern crate mdcat;
#[cfg(feature = "markdownviewer")]
-extern crate failure;
-
-#[cfg(feature = "markdownviewer")]
extern crate pulldown_cmark;
#[cfg(feature = "markdownviewer")]
@@ -56,7 +53,6 @@ extern crate libimagrt;
extern crate libimagerror;
extern crate libimagentryedit;
-pub mod error;
pub mod builtin;
pub mod viewer;