From be8304247b801e2d5c8652fe6f45a68f6a265326 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 23 Feb 2024 15:46:44 +0000 Subject: [PATCH] Relax itertools dependency Signed-off-by: Ian Jackson --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7bb43f..48b4163 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -542,7 +542,7 @@ dependencies = [ "hyper-tls", "indenter", "ipnet", - "itertools", + "itertools 0.12.1", "lazy-regex", "lazy_static", "libc", @@ -565,7 +565,7 @@ dependencies = [ name = "hippotat-macros" version = "1.1.9" dependencies = [ - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -701,6 +701,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.10" diff --git a/Cargo.toml b/Cargo.toml index 503611c..0247ffc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ hyper = { version = "0.14.7", features = ["full"] } hyper-tls = "0.5" indenter = "0.3" ipnet = "2.3" -itertools = "0.10.1" +itertools = ">=0.10.1, <0.13" lazy-regex = "2.4" lazy_static = "1.4" libc = "0.2" # just for EISDIR due to IsADirectory -- 2.30.2