add dep: glob

This commit is contained in:
Matthias Beyer 2015-11-20 15:33:40 +01:00
parent e59fbd52c3
commit 7e86394b3c
3 changed files with 8 additions and 0 deletions

6
Cargo.lock generated
View file

@ -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"

View file

@ -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"

View file

@ -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;