chore(deps): update rust crate itertools to 0.14.0

This commit is contained in:
renovate[bot] 2025-03-10 21:19:54 +00:00 committed by GitHub
parent 7c6596d3b0
commit 26828b1b59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 14 deletions

17
Cargo.lock generated
View file

@ -785,7 +785,7 @@ dependencies = [
"http-body-util", "http-body-util",
"hyper", "hyper",
"ipaddress", "ipaddress",
"itertools 0.13.0", "itertools 0.14.0",
"log", "log",
"rand", "rand",
"reqwest", "reqwest",
@ -823,7 +823,7 @@ dependencies = [
"http", "http",
"http-body-util", "http-body-util",
"ipaddress", "ipaddress",
"itertools 0.13.0", "itertools 0.14.0",
"libc", "libc",
"libloading", "libloading",
"log", "log",
@ -877,7 +877,7 @@ dependencies = [
name = "conduwuit_macros" name = "conduwuit_macros"
version = "0.5.0" version = "0.5.0"
dependencies = [ dependencies = [
"itertools 0.13.0", "itertools 0.14.0",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.98", "syn 2.0.98",
@ -933,7 +933,7 @@ dependencies = [
"http", "http",
"image", "image",
"ipaddress", "ipaddress",
"itertools 0.13.0", "itertools 0.14.0",
"log", "log",
"loole", "loole",
"lru-cache", "lru-cache",
@ -2231,15 +2231,6 @@ dependencies = [
"either", "either",
] ]
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.14.0" version = "0.14.0"

View file

@ -321,7 +321,7 @@ default-features = false
# Used to make working with iterators easier, was already a transitive depdendency # Used to make working with iterators easier, was already a transitive depdendency
[workspace.dependencies.itertools] [workspace.dependencies.itertools]
version = "0.13.0" version = "0.14.0"
# to parse user-friendly time durations in admin commands # to parse user-friendly time durations in admin commands
#TODO: overlaps chrono? #TODO: overlaps chrono?