Add dependencies

This commit is contained in:
Matthias Beyer 2016-05-28 17:42:39 +02:00
parent b71c511b8f
commit b817f1ba46
2 changed files with 14 additions and 6 deletions

View File

@ -4,3 +4,11 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
lazy_static = "0.1"
log = "0.3"
chrono = "0.2"
regex = "0.1"
[dependencies.libimagerror]
path = "../libimagerror"

View File

@ -1,6 +1,6 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}
extern crate chrono;
extern crate regex;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
#[macro_use] extern crate libimagerror;