1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-17 20:28:03 +02:00

grep-pcre2: release 0.1.3

This commit is contained in:
Andrew Gallant 2019-04-15 17:57:03 -04:00
parent 44cd344438
commit 79018eb693
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -153,7 +153,7 @@ version = "0.2.3"
dependencies = [
"grep-cli 0.1.1",
"grep-matcher 0.1.2",
"grep-pcre2 0.1.2",
"grep-pcre2 0.1.3",
"grep-printer 0.1.1",
"grep-regex 0.1.3",
"grep-searcher 0.1.3",
@ -186,7 +186,7 @@ dependencies = [
[[package]]
name = "grep-pcre2"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"grep-matcher 0.1.2",
"pcre2 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "grep-pcre2"
version = "0.1.2" #:version
version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use PCRE2 with the 'grep' crate.

View File

@ -15,7 +15,7 @@ license = "Unlicense/MIT"
[dependencies]
grep-cli = { version = "0.1.1", path = "../grep-cli" }
grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
grep-pcre2 = { version = "0.1.2", path = "../grep-pcre2", optional = true }
grep-pcre2 = { version = "0.1.3", path = "../grep-pcre2", optional = true }
grep-printer = { version = "0.1.1", path = "../grep-printer" }
grep-regex = { version = "0.1.3", path = "../grep-regex" }
grep-searcher = { version = "0.1.1", path = "../grep-searcher" }