From c5631af79ae2221a7e7a20c0fa33a0fed346aff7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 12:43:38 +0000 Subject: [PATCH] Update itertools requirement from 0.12 to 0.13 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.12.0...v0.13.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/spectator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/spectator/Cargo.toml b/crates/spectator/Cargo.toml index c252e4ded..e04cb2b21 100644 --- a/crates/spectator/Cargo.toml +++ b/crates/spectator/Cargo.toml @@ -24,7 +24,7 @@ eframe = { version = "0.26", features = ["ron", "persistence"], optional = true egui_dock = { version = "0.11", optional = true } egui_extras = { version = "0.26", optional = true } egui_plot = { version = "0.26", optional = true } -itertools = { version = "0.12", optional = true } +itertools = { version = "0.13", optional = true } rmp-serde = "1.1.1" serde = { version = "1.0", features = ["derive"] } time = { version = "0.3", features = ["serde"] }