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 committed Apr 30, 2023
1 parent 7baeeff commit f6fa0e4
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 @@ -31,7 +31,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 f6fa0e4

Please sign in to comment.