Add new dependency: is_match = 0.1

This commit is contained in:
Matthias Beyer 2017-05-04 15:57:27 +02:00
parent d0d1f6add2
commit 4472449696
6 changed files with 6 additions and 0 deletions

View file

@ -21,6 +21,7 @@ semver = "0.5"
url = "1.2"
rust-crypto = "0.2"
env_logger = "0.3"
is-match = "0.1"
[dependencies.libimagstore]
path = "../libimagstore"

View file

@ -37,6 +37,7 @@ extern crate toml;
extern crate semver;
extern crate url;
extern crate crypto;
#[macro_use] extern crate is_match;
#[cfg(test)]
extern crate env_logger;

View file

@ -19,6 +19,7 @@ log = "0.3"
regex = "0.2"
toml = "^0.4"
itertools = "0.5"
is-match = "0.1"
[dependencies.libimagstore]
path = "../libimagstore"

View file

@ -36,6 +36,7 @@ extern crate itertools;
#[macro_use] extern crate log;
extern crate regex;
extern crate toml;
#[macro_use] extern crate is_match;
extern crate libimagstore;
#[macro_use] extern crate libimagerror;

View file

@ -25,6 +25,7 @@ version = "2.0.1"
crossbeam = "0.2.*"
walkdir = "1.0.*"
itertools = "0.6.*"
is-match = "0.1"
[dependencies.libimagerror]
path = "../libimagerror"

View file

@ -43,6 +43,7 @@ extern crate semver;
extern crate crossbeam;
extern crate walkdir;
extern crate itertools;
#[macro_use] extern crate is_match;
#[macro_use] extern crate libimagerror;
#[macro_use] extern crate libimagutil;