From: Ian Jackson Date: Fri, 23 Feb 2024 15:47:39 +0000 (+0000) Subject: Relax lazy-regex dependency X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=7fe94dea4ec1b50b2e4895e0adf29d8956ff1943;p=hippotat.git Relax lazy-regex dependency Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index 48b4163..286aeef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -718,9 +718,9 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "lazy-regex" -version = "2.5.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff63c423c68ea6814b7da9e88ce585f793c87ddd9e78f646970891769c8235d4" +checksum = "5d12be4595afdf58bd19e4a9f4e24187da2a66700786ff660a418e9059937a4c" dependencies = [ "lazy-regex-proc_macros", "once_cell", @@ -729,14 +729,14 @@ dependencies = [ [[package]] name = "lazy-regex-proc_macros" -version = "2.4.1" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8edfc11b8f56ce85e207e62ea21557cfa09bb24a8f6b04ae181b086ff8611c22" +checksum = "44bcd58e6c97a7fcbaffcdc95728b393b8d98933bfadad49ed4097845b57ef0b" dependencies = [ "proc-macro2", "quote", "regex", - "syn 1.0.109", + "syn 2.0.50", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 0247ffc..0622d97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ hyper-tls = "0.5" indenter = "0.3" ipnet = "2.3" itertools = ">=0.10.1, <0.13" -lazy-regex = "2.4" +lazy-regex = ">=2.4, <4" lazy_static = "1.4" libc = "0.2" # just for EISDIR due to IsADirectory log = "0.4.14"