From 70ccffc543fc137bea916f2659502e59883126d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 01:54:32 -0700 Subject: [PATCH] build(deps): bump itertools from 0.13.0 to 0.14.0 in /native (#1337) Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.13.0 to 0.14.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) --- updated-dependencies: - dependency-name: itertools dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- native/Cargo.lock | 6 +++--- native/libcst/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/native/Cargo.lock b/native/Cargo.lock index 634b96ef..c80f0b94 100644 --- a/native/Cargo.lock +++ b/native/Cargo.lock @@ -246,9 +246,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] @@ -282,7 +282,7 @@ dependencies = [ "annotate-snippets", "criterion", "difference", - "itertools 0.13.0", + "itertools 0.14.0", "libcst_derive", "memchr", "paste", diff --git a/native/libcst/Cargo.toml b/native/libcst/Cargo.toml index c09abe37..309eeec2 100644 --- a/native/libcst/Cargo.toml +++ b/native/libcst/Cargo.toml @@ -48,7 +48,7 @@ libcst_derive = { path = "../libcst_derive", version = "1.8.0" } criterion = { version = "0.6.0", features = ["html_reports"] } difference = "2.0.0" rayon = "1.10.0" -itertools = "0.13.0" +itertools = "0.14.0" [[bench]] name = "parser_benchmark"