summaryrefslogtreecommitdiffstats
path: root/libimagentryview
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-07-16 23:35:53 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-17 01:27:50 +0200
commit2eb1fc8151c51b7f75ef3228d641e2b918d74297 (patch)
tree7168474dbd9707a17219aece5a6a4ee3e9482b2f /libimagentryview
parent1e5548a247518cb21b910555416ab139963807da (diff)
Add glob()ing in libimagentryview
Diffstat (limited to 'libimagentryview')
-rw-r--r--libimagentryview/Cargo.toml1
-rw-r--r--libimagentryview/src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/libimagentryview/Cargo.toml b/libimagentryview/Cargo.toml
index f827d414..43c2830c 100644
--- a/libimagentryview/Cargo.toml
+++ b/libimagentryview/Cargo.toml
@@ -6,6 +6,7 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
log = "0.3"
toml = "0.1.25"
+glob = "0.2.11"
[dependencies.libimagstore]
path = "../libimagstore"
diff --git a/libimagentryview/src/lib.rs b/libimagentryview/src/lib.rs
index 76d0001e..b31642f8 100644
--- a/libimagentryview/src/lib.rs
+++ b/libimagentryview/src/lib.rs
@@ -15,6 +15,7 @@
)]
#[macro_use] extern crate log;
+extern crate glob;
extern crate toml;
extern crate libimagstore;