Add dep: itertools
This commit is contained in:
parent
4721e44dd5
commit
873efa7475
3 changed files with 8 additions and 0 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -6,6 +6,7 @@ dependencies = [
|
||||||
"clap 1.4.5 (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)",
|
"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)",
|
"glob 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"itertools 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"open 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"open 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"prettytable-rs 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"prettytable-rs 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -85,6 +86,11 @@ name = "glob"
|
||||||
version = "0.2.10"
|
version = "0.2.10"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itertools"
|
||||||
|
version = "0.4.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kernel32-sys"
|
name = "kernel32-sys"
|
||||||
version = "0.1.4"
|
version = "0.1.4"
|
||||||
|
|
|
@ -28,4 +28,5 @@ term_grid = "0.1.2"
|
||||||
prettytable-rs = "0.4.0"
|
prettytable-rs = "0.4.0"
|
||||||
open = "1.1.0"
|
open = "1.1.0"
|
||||||
pulldown-cmark = "0.0.3"
|
pulldown-cmark = "0.0.3"
|
||||||
|
itertools = "0.4.5"
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ extern crate pulldown_cmark;
|
||||||
extern crate url;
|
extern crate url;
|
||||||
extern crate config;
|
extern crate config;
|
||||||
extern crate open;
|
extern crate open;
|
||||||
|
extern crate itertools;
|
||||||
|
|
||||||
pub use cli::CliConfig;
|
pub use cli::CliConfig;
|
||||||
pub use configuration::Configuration;
|
pub use configuration::Configuration;
|
||||||
|
|
Loading…
Reference in a new issue