From 7e86394b3cd81f6cf2ce575a96f02901567d910c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Nov 2015 15:33:40 +0100 Subject: [PATCH] add dep: glob --- Cargo.lock | 6 ++++++ Cargo.toml | 1 + src/main.rs | 1 + 3 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index bc8ed48b..3d150631 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,6 +5,7 @@ dependencies = [ "chrono 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", "clap 1.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "config 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "rustty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -71,6 +72,11 @@ dependencies = [ "nom 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "glob" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "kernel32-sys" version = "0.1.4" diff --git a/Cargo.toml b/Cargo.toml index 02766913..de5ca8fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,7 @@ log = "0.3.2" regex = "0.1.41" url = "0.2.37" uuid = "0.1.18" +glob = "0.2.10" config = "0.1.2" diff --git a/src/main.rs b/src/main.rs index fd57f95e..1dfdd28d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ #[macro_use] extern crate log; #[macro_use] extern crate serde; #[macro_use] extern crate serde_json; +#[macro_use] extern crate glob; extern crate config; extern crate regex;