From: Ian Jackson Date: Fri, 31 Jan 2025 23:13:49 +0000 (+0000) Subject: deps: allow and use itertools 0.14 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=ed79bd36d9ec0d5d9e3d700e94179aa972628d7b;p=hippotat.git deps: allow and use itertools 0.14 Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index 782e633..70cc988 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -705,9 +705,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] diff --git a/Cargo.toml b/Cargo.toml index ec00151..1454610 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.14" +itertools = ">=0.10.1, <0.15" 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 c138246..9b6ab25 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.14" +itertools = ">=0.10.1, <0.15" syn = { version = "1", features=["extra-traits"] } proc-macro2 = "1" quote = "1"