From 0b82f1a77cb3f53070f9192b84d49493403d1dee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Aug 2023 22:28:28 +0000 Subject: [PATCH] Bump itertools from 0.10.5 to 0.11.0 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.5 to 0.11.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++++++++- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 69403fc4a..ca817953d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2629,7 +2629,7 @@ dependencies = [ "hotshot-consensus", "hotshot-types", "hotshot-utils", - "itertools 0.10.5", + "itertools 0.11.0", "jf-primitives", "portpicker", "prometheus", @@ -3101,6 +3101,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "0.4.8" diff --git a/Cargo.toml b/Cargo.toml index 89de12c8b..897eff6fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", featur "channel-async-std", ] } hotshot-utils = { git = "https://github.com/EspressoSystems/HotShot.git" } -itertools = "0.10" +itertools = "0.11" prometheus = "0.13" serde = { version = "1.0", features = ["derive"] } snafu = { version = "0.7", features = ["backtraces"] }