Update itertools

This commit is contained in:
Manuel Vögele
2025-12-15 13:27:57 +01:00
parent 84f1a60663
commit f61e14b319
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View File

@@ -163,7 +163,7 @@ dependencies = [
"diesel", "diesel",
"diesel_migrations", "diesel_migrations",
"ical", "ical",
"itertools 0.13.0", "itertools 0.14.0",
"log", "log",
"once_cell", "once_cell",
"pretty_env_logger", "pretty_env_logger",
@@ -1213,9 +1213,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",
] ]

View File

@@ -15,7 +15,7 @@ chrono-tz = "0.10.4"
diesel = { version = "2.0.2", features = ["chrono", "sqlite"] } diesel = { version = "2.0.2", features = ["chrono", "sqlite"] }
diesel_migrations = "2.0.0" diesel_migrations = "2.0.0"
ical = { version = "0.11.0", features = ["ical"], default-features = false } ical = { version = "0.11.0", features = ["ical"], default-features = false }
itertools = "0.13.0" itertools = "0.14.0"
log = "0.4.17" log = "0.4.17"
once_cell = "1.17.0" once_cell = "1.17.0"
pretty_env_logger = "0.5.0" pretty_env_logger = "0.5.0"