From 7790799b0dfc65f70cfde0a26e8f29f77510744a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 11:02:26 +0200 Subject: [PATCH] build(deps): update itertools requirement from >=0.10, <=0.12 to >=0.10, <=0.14 (#1070) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- 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 d3c6fe507..4f2229f1c 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -17,7 +17,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.13", 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 96134b9c6..86a105f47 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -14,7 +14,7 @@ proc_macro = true [dependencies] anyhow = "1.0.1" -itertools = ">=0.10.1, <=0.12" +itertools = ">=0.10.1, <=0.13" proc-macro2 = "1.0.60" quote = "1" syn = { version = "2", features = ["extra-traits"] }