Skip to content

Commit

Permalink
Only use required features of regex crate
Browse files Browse the repository at this point in the history
This almost halves the time required to compile regex.
  • Loading branch information
davidlattimore authored and mmastrac committed Oct 30, 2023
1 parent 1318a6d commit 7837d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7837d4e

Please sign in to comment.