summaryrefslogtreecommitdiffstats
path: root/libimagnotes
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-02-13 18:17:07 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-03-25 16:30:12 +0100
commitd21e11e3a53811b537fd3bf4c231ecffe8aea100 (patch)
tree8ccded85265f81b4d3fb0a0977e7b996113cbc26 /libimagnotes
parente189aeed223bb90052d09dce839ee73b6c0e26d8 (diff)
Add dependencies
Diffstat (limited to 'libimagnotes')
-rw-r--r--libimagnotes/Cargo.toml13
-rw-r--r--libimagnotes/src/lib.rs11
2 files changed, 21 insertions, 3 deletions
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 <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"
+
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;
+