summaryrefslogtreecommitdiffstats
path: root/libimagentryedit
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-08-09 12:31:56 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-08-09 15:47:55 +0200
commit8fd52d0ef1a2725a558bd6f8fb95f614d2193fab (patch)
tree7d616ffb80e67462f4efd98037cf32536611f15a /libimagentryedit
parente250ca632e2253958672691c80708ab7f63f5c9c (diff)
Add dependencies
Diffstat (limited to 'libimagentryedit')
-rw-r--r--libimagentryedit/Cargo.toml11
-rw-r--r--libimagentryedit/src/lib.rs5
2 files changed, 16 insertions, 0 deletions
diff --git a/libimagentryedit/Cargo.toml b/libimagentryedit/Cargo.toml
index ba86bfb7..0c79700e 100644
--- a/libimagentryedit/Cargo.toml
+++ b/libimagentryedit/Cargo.toml
@@ -4,3 +4,14 @@ version = "0.2.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
+tempfile = "2.1.1"
+
+[dependencies.libimagerror]
+path = "../libimagerror"
+
+[dependencies.libimagrt]
+path = "../libimagrt"
+
+[dependencies.libimagstore]
+path = "../libimagstore"
+
diff --git a/libimagentryedit/src/lib.rs b/libimagentryedit/src/lib.rs
index 99946a87..7819d8d8 100644
--- a/libimagentryedit/src/lib.rs
+++ b/libimagentryedit/src/lib.rs
@@ -1 +1,6 @@
+#[macro_use] extern crate libimagerror;
+extern crate libimagstore;
+extern crate libimagrt;
+extern crate tempfile;
+
pub mod edit;