summaryrefslogtreecommitdiffstats
path: root/libimagtag
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-02-04 13:54:15 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-02-14 16:15:33 +0100
commit38c492c36223dd0d06ea2541bc3aa9fa0ef1fe7f (patch)
tree19abfa900d4278db5523826518f7be598357802c /libimagtag
parentd408aed8441facb8e1edfaff9fb2760e991f9aff (diff)
Add dependencies
Diffstat (limited to 'libimagtag')
-rw-r--r--libimagtag/Cargo.toml6
-rw-r--r--libimagtag/src/lib.rs5
2 files changed, 8 insertions, 3 deletions
diff --git a/libimagtag/Cargo.toml b/libimagtag/Cargo.toml
index 260112b5..88c2ed44 100644
--- a/libimagtag/Cargo.toml
+++ b/libimagtag/Cargo.toml
@@ -4,3 +4,9 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
+regex = "0.1.47"
+toml = "0.1.25"
+
+[dependencies.libimagstore]
+path = "../libimagstore"
+
diff --git a/libimagtag/src/lib.rs b/libimagtag/src/lib.rs
index a93251b6..029dc609 100644
--- a/libimagtag/src/lib.rs
+++ b/libimagtag/src/lib.rs
@@ -1,3 +1,2 @@
-#[test]
-fn it_works() {
-}
+extern crate regex;
+extern crate toml;