Add depenndency: regex

This commit is contained in:
Matthias Beyer 2016-07-08 00:23:56 +02:00
parent 5fa189fb4e
commit eb47f08479
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
log = "0.3" log = "0.3"
semver = "0.2" semver = "0.2"
url = "1.1" url = "1.1"
regex = "0.1"
[dependencies.libimagstore] [dependencies.libimagstore]
path = "../libimagstore" path = "../libimagstore"

View File

@ -1,6 +1,7 @@
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate semver; extern crate semver;
extern crate url; extern crate url;
extern crate regex;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;