From 66d4d7274dc3b15cecafcb3bea06bce3b228d35d Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Wed, 15 Nov 2023 10:20:22 +0100 Subject: [PATCH] upgrade itertools --- Cargo.lock | 11 ++++++++++- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 03a8ca42f..76c4c3387 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1556,7 +1556,7 @@ dependencies = [ "humantime", "hyper", "indoc", - "itertools 0.11.0", + "itertools 0.12.0", "kuchikiki", "log", "lol_html", @@ -3299,6 +3299,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "0.4.8" diff --git a/Cargo.toml b/Cargo.toml index 9ac980978..dc5725eff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ postgres-types = { version = "0.2", features = ["derive"] } zip = {version = "0.6.2", default-features = false, features = ["bzip2"]} bzip2 = "0.4.4" getrandom = "0.2.1" -itertools = { version = "0.11.0", optional = true} +itertools = { version = "0.12.0", optional = true} rusqlite = { version = "0.29.0", features = ["bundled"] } moka = { version ="0.12.0", default-features = false, features = ["sync"]}