From: Ian Jackson Date: Fri, 11 Oct 2024 09:56:00 +0000 (+0100) Subject: Update to itertools 0.13 (allow) X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=b8c7c7e92d340768747427465f3b9b5d0d623675;p=hippotat.git Update to itertools 0.13 (allow) Closes: #1082550 Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index 3ec3751..3047949 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -713,9 +713,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itertools" -version = "0.12.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ "either", ] diff --git a/Cargo.toml b/Cargo.toml index 5c72a1b..c5f48e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ hyper = { version = "0.14.7", features = ["full"] } hyper-tls = "0.5" indenter = "0.3" ipnet = "2.3" -itertools = ">=0.10.1, <0.13" +itertools = ">=0.10.1, <0.14" lazy-regex = ">=2.4, <4" lazy_static = "1.4" libc = "0.2" # just for EISDIR due to IsADirectory diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 49bcfce..165a6b4 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -13,7 +13,7 @@ repository="https://salsa.debian.org/iwj/hippotat" homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/hippotat/current/docs/" [dependencies] -itertools = ">=0.10.1, <0.13" +itertools = ">=0.10.1, <0.14" syn = { version = "1", features=["extra-traits"] } proc-macro2 = "1" quote = "1"