summaryrefslogtreecommitdiffstats
path: root/lib/core/libimagerror/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-03-07 16:16:56 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-03-08 11:43:24 +0100
commit126424630159a7aaa93f5e0de3a86d540a1f2b7c (patch)
tree8e970b8f670191a09a95345d41b792f589690fd6 /lib/core/libimagerror/src/lib.rs
parent8527d447ae2047e0d5d54cc70599a895b62a3ee0 (diff)
Move libimagerror to thiserror
In this patch, the error output (tracing) algorithm was changed, but should essentially print the same information. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'lib/core/libimagerror/src/lib.rs')
-rw-r--r--lib/core/libimagerror/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/core/libimagerror/src/lib.rs b/lib/core/libimagerror/src/lib.rs
index bacd831a..78d1e2c2 100644
--- a/lib/core/libimagerror/src/lib.rs
+++ b/lib/core/libimagerror/src/lib.rs
@@ -37,9 +37,10 @@
#[macro_use] extern crate log;
extern crate ansi_term;
+extern crate toml;
+extern crate thiserror;
extern crate anyhow;
-
pub mod errors;
pub mod exit;
pub mod trace;