From 63d2f56a8893934c92a4ae64ad8ba3a1b5cd8f2e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 12 May 2016 15:12:06 +0200 Subject: [PATCH] Add dependencies --- libimagbookmark/Cargo.toml | 10 ++++++++++ libimagbookmark/src/lib.rs | 12 ++++++------ 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 "] [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;