From e914a1c5a4a04a9cd918acb16df2600e5f1997e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Aug 2025 20:13:10 +0000 Subject: [PATCH] Update itertools requirement from 0.13 to 0.14 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-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- model/Cargo.toml | 2 +- vm/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/model/Cargo.toml b/model/Cargo.toml index 29b09af..4e84913 100644 --- a/model/Cargo.toml +++ b/model/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] enumset = "1.1" anyhow = "1.0" -itertools = "0.13" +itertools = "0.14" tracing = "0.1.41" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index a4c96e6..541978f 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -12,5 +12,5 @@ simple-error = "0.3" log = "0.4.17" lazy_static = "1.4.0" anyhow = "1.0" -itertools = "0.13" +itertools = "0.14" tracing = "0.1.41"