forked from BurntSushi/ripgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This will allow PCRE2 to fall back to non-JIT matching when running on platforms without JIT support. ref BurntSushi/rust-pcre2#3
- Loading branch information
1 parent
0f74942
commit eb18da0
Showing
6 changed files
with
34 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grep-pcre2" | ||
version = "0.1.1" #:version | ||
version = "0.1.2" #:version | ||
authors = ["Andrew Gallant <[email protected]>"] | ||
description = """ | ||
Use PCRE2 with the 'grep' crate. | ||
|
@@ -14,4 +14,4 @@ license = "Unlicense/MIT" | |
|
||
[dependencies] | ||
grep-matcher = { version = "0.1.1", path = "../grep-matcher" } | ||
pcre2 = "0.1.0" | ||
pcre2 = "0.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grep" | ||
version = "0.2.2" #:version | ||
version = "0.2.3" #:version | ||
authors = ["Andrew Gallant <[email protected]>"] | ||
description = """ | ||
Fast line oriented regex searching as a library. | ||
|
@@ -15,7 +15,7 @@ license = "Unlicense/MIT" | |
[dependencies] | ||
grep-cli = { version = "0.1.1", path = "../grep-cli" } | ||
grep-matcher = { version = "0.1.1", path = "../grep-matcher" } | ||
grep-pcre2 = { version = "0.1.1", path = "../grep-pcre2", optional = true } | ||
grep-pcre2 = { version = "0.1.2", path = "../grep-pcre2", optional = true } | ||
grep-printer = { version = "0.1.1", path = "../grep-printer" } | ||
grep-regex = { version = "0.1.1", path = "../grep-regex" } | ||
grep-searcher = { version = "0.1.1", path = "../grep-searcher" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters