From e10cfcfcb5b2ecb148cbdb263d4410a7cd2cbe41 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Sat, 20 Dec 2025 15:54:07 -0800 Subject: [PATCH] rox_compiler: fix regex --- rox_compiler/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rox_compiler/Cargo.toml b/rox_compiler/Cargo.toml index cf8ad50..7219a68 100644 --- a/rox_compiler/Cargo.toml +++ b/rox_compiler/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Rhys Lloyd "] [dependencies] futures = "0.3.30" -regex = { version = "1.11.3", default-features = false } +regex = { version = "1.11.3", default-features = false, features = ["unicode-perl"] } rayon = "1.8.0" rbx_dom_weak = "4.0.0" rbx_xml = "2.0.0"