summaryrefslogtreecommitdiffstats
path: root/libimagbookmark
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-05-12 15:12:06 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-07 23:46:06 +0200
commit63d2f56a8893934c92a4ae64ad8ba3a1b5cd8f2e (patch)
tree1974adddfc153195f0334a93d2b16108310351d6 /libimagbookmark
parent5a0720e3bb85bb41bb58b884b588ee317a8d8abf (diff)
Add dependencies
Diffstat (limited to 'libimagbookmark')
-rw-r--r--libimagbookmark/Cargo.toml10
-rw-r--r--libimagbookmark/src/lib.rs12
2 files changed, 16 insertions, 6 deletions
diff --git a/libimagbookmark/Cargo.toml b/libimagbookmark/Cargo.toml
index 897cf5f6..f4a35358 100644
--- a/libimagbookmark/Cargo.toml
+++ b/libimagbookmark/Cargo.toml
@@ -4,3 +4,13 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
+log = "0.3"
+semver = "0.2"
+url = "1.1"
+
+[dependencies.libimagstore]
+path = "../libimagstore"
+
+[dependencies.libimagentrylink]
+path = "../libimagentrylink"
+
diff --git a/libimagbookmark/src/lib.rs b/libimagbookmark/src/lib.rs
index cdfbe1aa..981b353c 100644
--- a/libimagbookmark/src/lib.rs
+++ b/libimagbookmark/src/lib.rs
@@ -1,6 +1,6 @@
-#[cfg(test)]
-mod tests {
- #[test]
- fn it_works() {
- }
-}
+#[macro_use] extern crate log;
+extern crate semver;
+extern crate url;
+
+#[macro_use] extern crate libimagstore;
+extern crate libimagentrylink;