From 286138af52bb137b8eec23ebeeaac0954d4d0eac Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Thu, 22 Jun 2023 14:50:17 -0700 Subject: [PATCH] Depend on itertools >=0.10, <0.12 --- Cargo.toml | 2 +- plot/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b7312417..259c4568 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["book/*"] anes = "0.1.4" once_cell = "1.14" criterion-plot = { path = "plot", version = "0.5.0" } -itertools = "0.10" +itertools = ">=0.10, <12" serde = "1.0" serde_json = "1.0" serde_derive = "1.0" diff --git a/plot/Cargo.toml b/plot/Cargo.toml index 94668a0d..de5fd269 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" +itertools = ">=0.10, <12" [dev-dependencies] itertools-num = "0.1"