summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-03 20:48:51 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-03 21:33:55 +0200
commit28d7085b2dbef61b95e41f05a276b256d66918dc (patch)
tree6d1cf83498862baf5141954a77e374102023b097
parent2b845c773b4524769a86a418c26c658fea3e5162 (diff)
Remove error_chain dependency, not needed
-rw-r--r--lib/core/libimagerror/Cargo.toml1
-rw-r--r--lib/core/libimagerror/src/lib.rs3
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/core/libimagerror/Cargo.toml b/lib/core/libimagerror/Cargo.toml
index fbfd1bbb..5f490746 100644
--- a/lib/core/libimagerror/Cargo.toml
+++ b/lib/core/libimagerror/Cargo.toml
@@ -16,4 +16,3 @@ homepage = "http://imag-pim.org"
[dependencies]
log = "0.3"
ansi_term = "0.9"
-error-chain = "0.10"
diff --git a/lib/core/libimagerror/src/lib.rs b/lib/core/libimagerror/src/lib.rs
index e66b6b06..df0534ba 100644
--- a/lib/core/libimagerror/src/lib.rs
+++ b/lib/core/libimagerror/src/lib.rs
@@ -36,9 +36,6 @@
#[macro_use] extern crate log;
extern crate ansi_term;
-#[cfg(test)]
-#[macro_use] extern crate error_chain;
-
pub mod into;
pub mod trace;
pub mod iter;