Add dependencies
This commit is contained in:
parent
b71c511b8f
commit
b817f1ba46
2 changed files with 14 additions and 6 deletions
|
@ -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"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue