From 3bb6a813a83b655d8c8f4132339ea9cf53ecf1cd Mon Sep 17 00:00:00 2001 From: PSeitz Date: Fri, 1 Dec 2023 18:42:53 +0100 Subject: [PATCH] Fix itertools dependency (#743) Fixes itertools dependency. Allow version 0.12. This deduplicates dependencies --- Cargo.toml | 2 +- plot/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce2a5a642..b19af36df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ exclude = ["book/*"] anes = "0.1.4" once_cell = "1.14" criterion-plot = { path = "plot", version = "0.5.0" } -itertools = ">=0.10, <12" +itertools = ">=0.10, <=0.12" serde = "1.0" serde_json = "1.0" serde_derive = "1.0" diff --git a/plot/Cargo.toml b/plot/Cargo.toml index 3873c6587..f7ef2023c 100644 --- a/plot/Cargo.toml +++ b/plot/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" [dependencies] cast = "0.3" -itertools = ">=0.10, <12" +itertools = ">=0.10, <=0.12" [dev-dependencies] itertools-num = "0.1"