diff --git a/libimagtag/Cargo.toml b/libimagtag/Cargo.toml index 88c2ed44..001efb43 100644 --- a/libimagtag/Cargo.toml +++ b/libimagtag/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" authors = ["Matthias Beyer "] [dependencies] +log = "0.3.5" regex = "0.1.47" toml = "0.1.25" diff --git a/libimagtag/src/lib.rs b/libimagtag/src/lib.rs index ad9e5e7b..2db44143 100644 --- a/libimagtag/src/lib.rs +++ b/libimagtag/src/lib.rs @@ -1,3 +1,4 @@ +#[macro_use] extern crate log; extern crate regex; extern crate toml;