You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
7 years ago
|
From 1f70e9187ceca65e7196f65e8cad1cba65efb47c Mon Sep 17 00:00:00 2001
|
||
|
From: Andrew Gallant <jamslam@gmail.com>
|
||
|
Date: Sat, 10 Mar 2018 14:02:06 -0500
|
||
|
Subject: [PATCH] deps: update regex crate
|
||
|
|
||
|
This update brings with it a new feature of the regex crate which will
|
||
|
now use SIMD optimizations automatically at runtime with no necessary
|
||
|
compile time flags. All that's needed is to enable the `unstable` feature.
|
||
|
|
||
|
Other crates, such as bytecount and encoding_rs, are still using the
|
||
|
old-style SIMD support, so we leave the simd-accel and avx-accel features.
|
||
|
However, the binaries we distribute on Github no longer have those
|
||
|
features enabled, which makes them truly portable.
|
||
|
|
||
|
Fixes #135
|
||
|
---
|
||
|
src/args.rs | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/args.rs b/src/args.rs
|
||
|
index d2077d678b9d..c7b31dd3646e 100644
|
||
|
--- a/src/args.rs
|
||
|
+++ b/src/args.rs
|
||
|
@@ -599,7 +599,7 @@ impl<'a> ArgMatches<'a> {
|
||
|
// This would normally just be an empty string, which works on its
|
||
|
// own, but if the patterns are joined in a set of alternations, then
|
||
|
// you wind up with `foo|`, which is invalid.
|
||
|
- self.word_pattern("z{0}".to_string())
|
||
|
+ self.word_pattern("(?:z{0})*".to_string())
|
||
|
}
|
||
|
|
||
|
/// Returns true if and only if file names containing each match should
|
||
|
--
|
||
|
2.14.3
|
||
|
|