Add dependencies

This commit is contained in:
Matthias Beyer 2016-05-26 10:35:11 +02:00
parent 9f3878d43f
commit a0b7e9b980
2 changed files with 16 additions and 6 deletions

View file

@ -4,3 +4,13 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
clap = "2"
log = "0.3"
interactor = "0.1"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagerror]
path = "../libimagerror"

View file

@ -1,6 +1,6 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}
extern crate clap;
extern crate log;
extern crate interactor;
extern crate libimagstore;