From 03ae01f11e9a7dc516451cf64c80163e430ecf47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 22:58:07 +0800 Subject: [PATCH] Bump itertools from 0.11.0 to 0.12.0 (#11360) Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.11.0 to 0.12.0.
Changelog

Sourced from itertools's changelog.

0.12.0

Breaking

Added

Changed

Notable Internal Changes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=itertools&package-manager=cargo&previous-version=0.11.0&new-version=0.12.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 15 ++++++++++++--- crates/nu-cmd-lang/Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 2 +- crates/nu-parser/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 959af9e1b8..4b5403d9ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1974,6 +1974,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.10" @@ -2773,7 +2782,7 @@ name = "nu-cmd-lang" version = "0.88.2" dependencies = [ "fancy-regex 0.11.0", - "itertools 0.11.0", + "itertools 0.12.0", "nu-ansi-term", "nu-engine", "nu-parser", @@ -2824,7 +2833,7 @@ dependencies = [ "human-date-parser", "indexmap", "indicatif", - "itertools 0.11.0", + "itertools 0.12.0", "libc", "log", "lscolors", @@ -2973,7 +2982,7 @@ version = "0.88.2" dependencies = [ "bytesize", "chrono", - "itertools 0.11.0", + "itertools 0.12.0", "log", "nu-engine", "nu-path", diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index 9a540ca5dd..dce9387da1 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -19,7 +19,7 @@ nu-utils = { path = "../nu-utils", version = "0.88.2" } nu-ansi-term = "0.49.0" fancy-regex = "0.11" -itertools = "0.11" +itertools = "0.12" shadow-rs = { version = "0.25", default-features = false } [build-dependencies] diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index bd6b1d3932..c7331ee18f 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -50,7 +50,7 @@ htmlescape = "0.3" human-date-parser = "0.1.1" indexmap = "2.1" indicatif = "0.17" -itertools = "0.11" +itertools = "0.12" log = "0.4" lscolors = { version = "0.15", default-features = false, features = ["nu-ansi-term"] } md5 = { package = "md-5", version = "0.10" } diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 022449e52c..d1e4bf4232 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -19,7 +19,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.88.2" } bytesize = "1.3" chrono = { default-features = false, features = ['std'], version = "0.4" } -itertools = "0.11" +itertools = "0.12" log = "0.4" serde_json = "1.0"