From 22e07d171b8bfc5a005c7c67804a3db6daa1cd60 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 8 Jul 2016 16:21:24 +0200 Subject: [PATCH] fixup! Add depenndency: regex --- libimagbookmark/src/collection.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libimagbookmark/src/collection.rs b/libimagbookmark/src/collection.rs index b0ed38de..a6e29ee0 100644 --- a/libimagbookmark/src/collection.rs +++ b/libimagbookmark/src/collection.rs @@ -7,6 +7,8 @@ use std::ops::Deref; use std::ops::DerefMut; +use regex::Regex; + use error::BookmarkError as BE; use error::BookmarkErrorKind as BEK; use error::MapErrInto;