From 669c79688d010fb2b57eb2d7e1052b9504546183 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 2 Jan 2025 13:11:14 -0600 Subject: [PATCH] chore: Update itertools --- Cargo.lock | 17 +++++++++++++---- Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a5028bc..79b98bad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -328,7 +328,7 @@ dependencies = [ "html-minifier", "human-panic", "ignore", - "itertools", + "itertools 0.14.0", "jsonfeed", "lazy_static", "liquid", @@ -362,7 +362,7 @@ name = "cobalt-config" version = "0.19.4" dependencies = [ "deunicode", - "itertools", + "itertools 0.14.0", "liquid-core", "log", "once_cell", @@ -1033,6 +1033,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -1134,7 +1143,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2752e978ffc53670f3f2e8b3ef09f348d6f7b5474a3be3f8a5befe5382e4effb" dependencies = [ "anymap2", - "itertools", + "itertools 0.13.0", "kstring", "liquid-derive", "num-traits", @@ -1163,7 +1172,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59b1a298d3d2287ee5b1e43840d885b8fdfc37d3f4e90d82aacfd04d021618da" dependencies = [ "deunicode", - "itertools", + "itertools 0.13.0", "liquid-core", "once_cell", "percent-encoding", diff --git a/Cargo.toml b/Cargo.toml index ad0aff0f..412e8957 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ pulldown-cmark = {version="0.12", default-features = false, features = ["html"] engarde = { version = "0.1", path = "crates/engarde" } regex = "1.10" lazy_static = "1.4" -itertools = "0.13" +itertools = "0.14" ignore = "0.4" serde = "1.0" serde_yaml = "0.9" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index cbaf6298..dac60244 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -30,7 +30,7 @@ relative-path = { version = "1", features = ["serde"] } once_cell = "1.19" status = { version = "0.0.10", features = ["send_sync"] } deunicode = "1.4" -itertools = "0.13" +itertools = "0.14" [lints] workspace = true