From ed84f72aced948b905e9680962d920b835e3048a Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Thu, 3 Aug 2023 18:29:33 +0200 Subject: [PATCH] fix: hold back regex crate (v1.9.0 causes issues) Reported issue: https://github.com/rust-lang/regex/issues/1060 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 708866b..e1900b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ quick-js-dtp = { version = "0.4.1", default-features = false, features = [ "patch-dateparser", ] } once_cell = "1.12.0" -regex = "1.6.0" +regex = ">=1.6.0, <1.9.0" fancy-regex = "0.11.0" thiserror = "1.0.36" url = "2.2.2"