Skip to content

Commit

Permalink
chore(deps): Remove dependency on itertools
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed Jan 13, 2024
1 parent 8e4bfad commit 6dca2b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

### Internal

- Removed dependency on `itertools`.

## [3.0.4] - 2023-09-18

### Compatibility
Expand Down
16 changes: 0 additions & 16 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ difflib = { version = "0.4", optional = true }
normalize-line-endings = { version = "0.3.0", optional = true }
regex = { version="1.0", optional = true }
float-cmp = { version="0.9", optional = true }
itertools = "0.12"
anstyle = "1.0.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/str/difference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Predicate<str> for DifferencePredicate {
Some(
reflection::Case::new(Some(self), result).add_product(reflection::Product::new(
"diff",
itertools::join(diff.iter(), ""),
diff.join(""),
)),
)
}
Expand Down

0 comments on commit 6dca2b2

Please sign in to comment.