Skip to content

Commit 2a16a21

Browse files
committed
feat: add itertools to deps and expose IterTools trait
1 parent 2a31511 commit 2a16a21

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ fastrand = "2.0"
1818
globset = "0.4"
1919
howudoin = { version = "0.1", features = ["term-line"] }
2020
humantime = "2.1"
21+
itertools = "0.13.0"
2122
miette = { version = "7.2", features = ["fancy"] }
2223
numfmt = { git = "https://github.com/kurtlawrence/numfmt" }
2324
rayon = "1.7"

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ pub mod deps {
150150
pub use ::globset;
151151
pub use ::howudoin;
152152
pub use ::humantime;
153+
pub use ::itertools;
153154
pub use ::miette;
154155
pub use ::numfmt;
155156
pub use ::rayon;
@@ -184,6 +185,7 @@ pub mod prelude {
184185
pub use ::fastrand;
185186
pub use ::howudoin;
186187
pub use ::humantime::{parse_duration, Duration, Timestamp};
188+
pub use ::itertools::Itertools;
187189
pub use ::miette::{bail, ensure, miette, Error, IntoDiagnostic, Result, WrapErr};
188190
pub use ::numfmt::Formatter as NumFmt;
189191
pub use ::rayon;

0 commit comments

Comments
 (0)