diff --git a/libimagnotes/Cargo.toml b/libimagnotes/Cargo.toml index b2c29f2b..7998a296 100644 --- a/libimagnotes/Cargo.toml +++ b/libimagnotes/Cargo.toml @@ -4,3 +4,16 @@ version = "0.1.0" authors = ["Matthias Beyer "] [dependencies] +semver = "0.2" +log = "0.3.5" +toml = "0.1.25" + +[dependencies.libimagstore] +path = "../libimagstore" + +[dependencies.libimagrt] +path = "../libimagrt" + +[dependencies.libimagtag] +path = "../libimagtag" + diff --git a/libimagnotes/src/lib.rs b/libimagnotes/src/lib.rs index a93251b6..ee6a5a7a 100644 --- a/libimagnotes/src/lib.rs +++ b/libimagnotes/src/lib.rs @@ -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; +