From 4b9b9276b6de47d4d4e1d943da5c87fa01633a11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:23:41 +0000 Subject: [PATCH] build(deps): update itertools requirement from 0.11 to 0.12 in /demo 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.11.0...v0.12.1) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- demo/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 8a6fec0d0..e8787e583 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -25,7 +25,7 @@ iced = { version = "0.12", features = [ "tokio", "lazy", ], optional = true } -itertools = "0.11" +itertools = "0.12" crossbeam-channel = "0.5" image_rs = { package = "image", version = "0.24", optional = true } anyhow = "1.0"