add dep: glob
This commit is contained in:
parent
e59fbd52c3
commit
7e86394b3c
3 changed files with 8 additions and 0 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue