summaryrefslogtreecommitdiffstats
path: root/libimagbookmark
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-07-08 00:23:56 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-08 00:23:56 +0200
commiteb47f084792170a64809a14c6b0d240c67c0de56 (patch)
treef30949784dc6c0de8efa6ea70b0d332b4d120936 /libimagbookmark
parent5fa189fb4e01cf07b832224f3cf1ff6cec74ec4e (diff)
Add depenndency: regex
Diffstat (limited to 'libimagbookmark')
-rw-r--r--libimagbookmark/Cargo.toml1
-rw-r--r--libimagbookmark/src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/libimagbookmark/Cargo.toml b/libimagbookmark/Cargo.toml
index 7ced32c1..2d005855 100644
--- a/libimagbookmark/Cargo.toml
+++ b/libimagbookmark/Cargo.toml
@@ -7,6 +7,7 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
log = "0.3"
semver = "0.2"
url = "1.1"
+regex = "0.1"
[dependencies.libimagstore]
path = "../libimagstore"
diff --git a/libimagbookmark/src/lib.rs b/libimagbookmark/src/lib.rs
index 4c42547a..a06fca54 100644
--- a/libimagbookmark/src/lib.rs
+++ b/libimagbookmark/src/lib.rs
@@ -1,6 +1,7 @@
#[macro_use] extern crate log;
extern crate semver;
extern crate url;
+extern crate regex;
#[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror;