Add dependencies

This commit is contained in:
Matthias Beyer 2016-02-13 18:17:07 +01:00
parent e189aeed22
commit d21e11e3a5
2 changed files with 21 additions and 3 deletions

View file

@ -4,3 +4,16 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
semver = "0.2"
log = "0.3.5"
toml = "0.1.25"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagrt]
path = "../libimagrt"
[dependencies.libimagtag]
path = "../libimagtag"

View file

@ -1,3 +1,8 @@
#[test]
fn it_works() {
}
#[macro_use] extern crate log;
extern crate semver;
extern crate toml;
extern crate libimagrt;
extern crate libimagstore;
extern crate libimagtag;