From 5fd3953bdf71a19bd33fdd32e070aff2cbb820d1 Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Wed, 25 Sep 2024 21:02:27 +0900 Subject: [PATCH 1/2] =?UTF-8?q?update:=20#378:=20`regex`=E3=81=AB=E3=81=A4?= =?UTF-8?q?=E3=81=84=E3=81=A6`std`=E4=BB=A5=E5=A4=96=E3=81=AE=E3=83=95?= =?UTF-8?q?=E3=82=A3=E3=83=BC=E3=83=81=E3=83=A3=E3=82=92=E7=84=A1=E5=8A=B9?= =?UTF-8?q?=E5=8C=96=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 0e72ca7d..c0037d4a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -24,7 +24,7 @@ eliminate-whitespaces = [] [dependencies] itertools = "0.13.0" rapidfuzz = "0.5.0" -regex = "1.10.2" +regex = { version = "1.10.6", default-features = false, features = ["std"] } serde.workspace = true reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] } js-sys = "0.3.67" From c6f509b9ac0b83b2ebf46372be3c7a9ba607e281 Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Wed, 25 Sep 2024 21:17:46 +0900 Subject: [PATCH 2/2] =?UTF-8?q?update:=20#378:=20`regex`=E3=81=AB=E3=81=A4?= =?UTF-8?q?=E3=81=84=E3=81=A6`unicode-perl`=E3=83=95=E3=82=A3=E3=83=BC?= =?UTF-8?q?=E3=83=81=E3=83=A3=E3=82=92=E6=9C=89=E5=8A=B9=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 正規表現`\D`を使用するために必要なため --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index c0037d4a..b9b5a935 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -24,7 +24,7 @@ eliminate-whitespaces = [] [dependencies] itertools = "0.13.0" rapidfuzz = "0.5.0" -regex = { version = "1.10.6", default-features = false, features = ["std"] } +regex = { version = "1.10.6", default-features = false, features = ["std", "unicode-perl"] } serde.workspace = true reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] } js-sys = "0.3.67"