Skip to content

Commit 506d114

Browse files
committed
Disable the unicode feature from regex
I don't see any way this feature could be useful for modules and it brings in a lot of code.
1 parent d8cec22 commit 506d114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ members = [
2121

2222
[dependencies]
2323
log = { version = "0.4.8", features = ["std"] }
24-
regex = { version = "1.0.3", optional = true }
24+
regex = { version = "1.0.3", optional = true, default-features=false, features=["std", "perf"] }
2525
termcolor = { version = "1.0.2", optional = true }
2626
humantime = { version = "2.0.0", optional = true }
2727
atty = { version = "0.2.5", optional = true }

0 commit comments

Comments
 (0)