Skip to content

Commit

Permalink
chore(deps): Update itertools to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed May 20, 2024
1 parent 39b59e3 commit 0f266fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ env_logger = { version = "0.11.3", default-features = false }
glob = { version = "0.3.1", default-features = false }
indoc = { version = "2.0.5", default-features = false }
ini-merge = { version = "0.4.5", default-features = false }
itertools = { version = "0.12.1", default-features = false }
itertools = { version = "0.13.0", default-features = false }
log = { version = "0.4.21", default-features = false }
medic = { version = "0.2.0" }
regex = "1.10.4"
Expand Down
3 changes: 2 additions & 1 deletion src/transforms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
use std::collections::HashMap;

use ini_merge::mutations::transforms as ini_transforms;
use itertools::Itertools;
use strum::{EnumIter, EnumMessage, EnumString, IntoStaticStr};

/// Supported transforms
Expand Down Expand Up @@ -56,6 +55,8 @@ impl Transform {
});
println!("Supported transforms:");
println!("====================\n");
// Workaround for https://github.com/rust-itertools/itertools/issues/942
use itertools::Itertools;
println!(
"{}",
Itertools::intersperse(docs, "\n\n".to_string()).collect::<String>()
Expand Down

0 comments on commit 0f266fb

Please sign in to comment.