Skip to content

Commit

Permalink
Add Itertools for .flatten in stable
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspustina committed Aug 2, 2018
1 parent 23033ec commit a4e2c44
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ codecov = { repository = "lukaspustina/nmap-analyze", branch = "master", service
clams = "^0.0.13"
error-chain = "^0.12"
log = "^0.4"
itertools = "^0.7"
prettytable-rs = "^0.7"
serde = "^1.0"
serde_derive = "^1.0"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
extern crate clams;
#[macro_use]
extern crate error_chain;
extern crate itertools;
#[macro_use]
extern crate log;
extern crate prettytable;
Expand Down
1 change: 1 addition & 0 deletions src/nmap.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use super::{from_str, FromFile, SanityCheck};
use itertools::Itertools;

use std::net::IpAddr;
use std::str::FromStr;
Expand Down

0 comments on commit a4e2c44

Please sign in to comment.