From e67a683e13a3a67bd10ba3fbf3c3c2fcb4fb4ecd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:05:48 +0100 Subject: [PATCH] chore(deps): update rust crate itertools to 0.12 (#949) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf47c62..41d357a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1498,6 +1498,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 = "1.0.9" @@ -2214,7 +2223,7 @@ dependencies = [ "gethostname", "humantime", "indicatif", - "itertools", + "itertools 0.12.0", "jemallocator-global", "libc", "log", @@ -2268,7 +2277,7 @@ dependencies = [ "humantime", "ignore", "integer-sqrt", - "itertools", + "itertools 0.11.0", "log", "merge", "nix", diff --git a/Cargo.toml b/Cargo.toml index b0260fc..7205bab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -131,7 +131,7 @@ dialoguer = "0.11.0" indicatif = "0.17" gethostname = "0.4" bytesize = "1" -itertools = "0.11" +itertools = "0.12" humantime = "2" clap_complete = "4" clap = { version = "4", features = ["derive", "env", "wrap_help"] }