chore(deps): bump itertools from 0.12.1 to 0.13.0 (#2297)

Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.12.1 to 0.13.0.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-07-22 11:52:25 +01:00 committed by GitHub
parent 5621d709a7
commit 36726492e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 17 deletions

23
Cargo.lock generated
View File

@ -246,7 +246,7 @@ dependencies = [
"fuzzy-matcher", "fuzzy-matcher",
"indicatif", "indicatif",
"interim", "interim",
"itertools 0.12.1", "itertools",
"log", "log",
"ratatui", "ratatui",
"regex", "regex",
@ -289,7 +289,7 @@ dependencies = [
"humantime", "humantime",
"indicatif", "indicatif",
"interim", "interim",
"itertools 0.12.1", "itertools",
"lazy_static", "lazy_static",
"log", "log",
"memchr", "memchr",
@ -402,7 +402,7 @@ dependencies = [
"futures-util", "futures-util",
"indicatif", "indicatif",
"interim", "interim",
"itertools 0.12.1", "itertools",
"log", "log",
"rand", "rand",
"semver", "semver",
@ -2060,15 +2060,6 @@ dependencies = [
"nom", "nom",
] ]
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.13.0" version = "0.13.0"
@ -2978,7 +2969,7 @@ checksum = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1"
dependencies = [ dependencies = [
"bytes", "bytes",
"heck 0.5.0", "heck 0.5.0",
"itertools 0.13.0", "itertools",
"log", "log",
"multimap", "multimap",
"once_cell", "once_cell",
@ -2998,7 +2989,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca" checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools 0.13.0", "itertools",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.70", "syn 2.0.70",
@ -3127,7 +3118,7 @@ dependencies = [
"cassowary", "cassowary",
"compact_str", "compact_str",
"crossterm", "crossterm",
"itertools 0.13.0", "itertools",
"lru", "lru",
"paste", "paste",
"stability", "stability",
@ -4681,7 +4672,7 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
dependencies = [ dependencies = [
"itertools 0.13.0", "itertools",
"unicode-segmentation", "unicode-segmentation",
"unicode-width", "unicode-width",
] ]

View File

@ -28,7 +28,7 @@ directories = "5.0.1"
eyre = "0.6" eyre = "0.6"
fs-err = "2.9" fs-err = "2.9"
interim = { version = "0.1.0", features = ["time"] } interim = { version = "0.1.0", features = ["time"] }
itertools = "0.12.0" itertools = "0.13.0"
rand = { version = "0.8.5", features = ["std"] } rand = { version = "0.8.5", features = ["std"] }
semver = "1.0.20" semver = "1.0.20"
serde = { version = "1.0.202", features = ["derive"] } serde = { version = "1.0.202", features = ["derive"] }