From faaf3b30f9a1f711fccc524dad9be83d28fd5080 Mon Sep 17 00:00:00 2001 From: David Lattimore Date: Sun, 30 Apr 2023 11:08:04 +1000 Subject: [PATCH] Only use required features of regex crate This almost halves the time required to compile regex. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 65b9952..827a87b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ num-traits = "0.2" dashmap = "5" crossbeam-queue = "0.3" uuid = { version = "1", features = ["v4"] } -regex = "1" +regex = { version = "1", default-features = false, features = ["std", "unicode-perl"] } once_cell = "1" log = "0.4" asynchronous-codec = "0.6"