From 6f96a4bb82ab18622e8504774e9c467c8516e046 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 12:56:26 +0000 Subject: [PATCH] Update itertools requirement from 0.13.0 to 0.14.0 Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [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-type: direct:production ... Signed-off-by: dependabot[bot] --- subroutines/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subroutines/Cargo.toml b/subroutines/Cargo.toml index 6663136..b1f58b0 100644 --- a/subroutines/Cargo.toml +++ b/subroutines/Cargo.toml @@ -14,7 +14,7 @@ ark-serialize = { version = "^0.4.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } derivative = { version = "2", features = ["use_core"] } displaydoc = { version = "0.2.3", default-features = false } -itertools = { version = "0.13.0", optional = true } +itertools = { version = "0.14.0", optional = true } rand_chacha = { version = "0.3.0", default-features = false } rayon = { version = "1.5.2", default-features = false, optional = true } bincode = "1.3"