From 589a9a479de15bd606e8951f131d9a246857780c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 13:47:12 +0000 Subject: [PATCH] build(deps): update itertools requirement from >=0.10, <=0.12 to >=0.10, <=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.10.0...v0.13.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- prost-build/Cargo.toml | 2 +- prost-derive/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 3cd4334f9..65f34d3a3 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -23,7 +23,7 @@ cleanup-markdown = ["dep:pulldown-cmark", "dep:pulldown-cmark-to-cmark"] [dependencies] bytes = { version = "1", default-features = false } heck = { version = ">=0.4, <=0.5" } -itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] } +itertools = { version = ">=0.10, <=0.14", default-features = false, features = ["use_alloc"] } log = "0.4.4" multimap = { version = ">=0.8, <=0.10", default-features = false } petgraph = { version = "0.6", default-features = false } diff --git a/prost-derive/Cargo.toml b/prost-derive/Cargo.toml index 2ee5c28d1..3dd6970af 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -20,7 +20,7 @@ proc_macro = true [dependencies] anyhow = "1.0.1" -itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] } +itertools = { version = ">=0.10, <=0.14", default-features = false, features = ["use_alloc"] } proc-macro2 = "1" quote = "1" syn = { version = "2", features = ["extra-traits"] }