Skip to content

Commit

Permalink
Only use required features of regex crate (#178)
Browse files Browse the repository at this point in the history
This almost halves the time required to compile regex.
  • Loading branch information
davidlattimore committed Oct 30, 2023
1 parent 3898da7 commit 28a05b4
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 28a05b4

Please sign in to comment.