summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-08-01 17:46:59 -0400
committerAndrew Gallant <jamslam@gmail.com>2019-08-01 17:46:59 -0400
commit9085bed139baa5aa7bb5fb380982d3d845cb4078 (patch)
tree8549162859f3f0dab4019e50fa7a80c64b17fa45
parent931ab35f76acf729e8cb4c2e325a2c489c26a962 (diff)
grep-matcher: release 0.1.3grep-matcher-0.1.3
-rw-r--r--Cargo.lock12
-rw-r--r--grep-matcher/Cargo.toml2
2 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2c01ef82..efb14665 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -155,7 +155,7 @@ name = "grep"
version = "0.2.4"
dependencies = [
"grep-cli 0.1.3",
- "grep-matcher 0.1.2",
+ "grep-matcher 0.1.3",
"grep-pcre2 0.1.3",
"grep-printer 0.1.3",
"grep-regex 0.1.3",
@@ -181,7 +181,7 @@ dependencies = [
[[package]]
name = "grep-matcher"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -191,7 +191,7 @@ dependencies = [
name = "grep-pcre2"
version = "0.1.3"
dependencies = [
- "grep-matcher 0.1.2",
+ "grep-matcher 0.1.3",
"pcre2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -201,7 +201,7 @@ version = "0.1.3"
dependencies = [
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.2",
+ "grep-matcher 0.1.3",
"grep-regex 0.1.3",
"grep-searcher 0.1.5",
"serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -215,7 +215,7 @@ name = "grep-regex"
version = "0.1.3"
dependencies = [
"aho-corasick 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.2",
+ "grep-matcher 0.1.3",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -231,7 +231,7 @@ dependencies = [
"bytecount 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_rs_io 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.2",
+ "grep-matcher 0.1.3",
"grep-regex 0.1.3",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/grep-matcher/Cargo.toml b/grep-matcher/Cargo.toml
index 59afae44..6a99d96f 100644
--- a/grep-matcher/Cargo.toml
+++ b/grep-matcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-matcher"
-version = "0.1.2" #:version
+version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A trait for regular expressions, with a focus on line oriented search.