From da7420a823896aeee89f2f158a8bd80824eff7a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:11:41 +0000 Subject: [PATCH] Update itertools requirement from 0.10 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.10.0...v0.14.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- apps/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Cargo.toml b/apps/Cargo.toml index 3c9db1a9e..e1057183b 100644 --- a/apps/Cargo.toml +++ b/apps/Cargo.toml @@ -32,7 +32,7 @@ quiche = { path = "../quiche" } libc = "0.2" nix = { version = "0.27", features = ["net", "socket", "uio"] } slab = "0.4" -itertools = "0.10" +itertools = "0.14" clap = { version = "4.1", features = ["derive"] } tokio = { version = "1.40.0", features = ["full"] } socket2 = "0.5.7"