Update Rust crate itertools to 0.14.0

This commit is contained in:
renovate[bot] 2025-03-03 12:15:54 +00:00 committed by GitHub
parent e3b81f7b64
commit c7c0dc5a3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

14
Cargo.lock generated
View file

@ -768,7 +768,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",
@ -806,7 +806,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",
@ -859,7 +859,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.96", "syn 2.0.96",
@ -916,7 +916,7 @@ dependencies = [
"http", "http",
"image", "image",
"ipaddress", "ipaddress",
"itertools 0.13.0", "itertools 0.14.0",
"log", "log",
"loole", "loole",
"lru-cache", "lru-cache",
@ -2205,9 +2205,9 @@ dependencies = [
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.13.0" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [ dependencies = [
"either", "either",
] ]
@ -3139,7 +3139,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools 0.13.0", "itertools 0.12.1",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.96", "syn 2.0.96",

View file

@ -317,7 +317,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?