Skip to content

Commit

Permalink
Add an explicit dependency on itertools
Browse files Browse the repository at this point in the history
The izip! macro will be useful
  • Loading branch information
Guillaume Fraux committed Sep 18, 2017
1 parent ceaaf17 commit f62e90a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ num-traits = "0.1"
rayon = "0.8"
thread_local = "0.3"
caldyn = "0.4"
itertools = "0.6"

[dev-dependencies]
tempfile = "2.1"
Expand Down
2 changes: 2 additions & 0 deletions src/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ extern crate log_once;
extern crate bitflags;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate itertools;

#[cfg(test)]
#[macro_use]
Expand Down

0 comments on commit f62e90a

Please sign in to comment.