summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-04-15 17:53:29 -0400
committerAndrew Gallant <jamslam@gmail.com>2019-04-15 17:53:29 -0400
commite493e54b9b81d729b748d378a5166112da305eb9 (patch)
tree779a88c1aa44e4a9753c6b6b27d9f376bda8d8b2
parent8e8215aa65ac392c31003b62c7989d00e8666304 (diff)
grep-matcher: release 0.1.2grep-matcher-0.1.2
-rw-r--r--Cargo.lock12
-rw-r--r--grep-matcher/Cargo.toml2
-rw-r--r--grep-pcre2/Cargo.toml2
-rw-r--r--grep-printer/Cargo.toml2
-rw-r--r--grep-regex/Cargo.toml2
-rw-r--r--grep-searcher/Cargo.toml2
-rw-r--r--grep/Cargo.toml2
7 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 294a2886..aa2c6a92 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -152,7 +152,7 @@ name = "grep"
version = "0.2.3"
dependencies = [
"grep-cli 0.1.1",
- "grep-matcher 0.1.1",
+ "grep-matcher 0.1.2",
"grep-pcre2 0.1.2",
"grep-printer 0.1.1",
"grep-regex 0.1.2",
@@ -178,7 +178,7 @@ dependencies = [
[[package]]
name = "grep-matcher"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -188,7 +188,7 @@ dependencies = [
name = "grep-pcre2"
version = "0.1.2"
dependencies = [
- "grep-matcher 0.1.1",
+ "grep-matcher 0.1.2",
"pcre2 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -198,7 +198,7 @@ version = "0.1.1"
dependencies = [
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.1",
+ "grep-matcher 0.1.2",
"grep-regex 0.1.2",
"grep-searcher 0.1.3",
"serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -212,7 +212,7 @@ name = "grep-regex"
version = "0.1.2"
dependencies = [
"aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.1",
+ "grep-matcher 0.1.2",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -228,7 +228,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.1",
+ "grep-matcher 0.1.2",
"grep-regex 0.1.2",
"log 0.4.6 (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 39391291..59afae44 100644
--- a/grep-matcher/Cargo.toml
+++ b/grep-matcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-matcher"
-version = "0.1.1" #:version
+version = "0.1.2" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A trait for regular expressions, with a focus on line oriented search.
diff --git a/grep-pcre2/Cargo.toml b/grep-pcre2/Cargo.toml
index 58386037..7e5785a0 100644
--- a/grep-pcre2/Cargo.toml
+++ b/grep-pcre2/Cargo.toml
@@ -13,5 +13,5 @@ keywords = ["regex", "grep", "pcre", "backreference", "look"]
license = "Unlicense/MIT"
[dependencies]
-grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
pcre2 = "0.2.0"
diff --git a/grep-printer/Cargo.toml b/grep-printer/Cargo.toml
index 1ce553fe..3ff5fac4 100644
--- a/grep-printer/Cargo.toml
+++ b/grep-printer/Cargo.toml
@@ -20,7 +20,7 @@ serde1 = ["base64", "serde", "serde_derive", "serde_json"]
[dependencies]
base64 = { version = "0.10.0", optional = true }
bstr = "0.1.2"
-grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
grep-searcher = { version = "0.1.1", path = "../grep-searcher" }
termcolor = "1.0.4"
serde = { version = "1.0.77", optional = true }
diff --git a/grep-regex/Cargo.toml b/grep-regex/Cargo.toml
index dbbb546f..0ac13627 100644
--- a/grep-regex/Cargo.toml
+++ b/grep-regex/Cargo.toml
@@ -14,7 +14,7 @@ license = "Unlicense/MIT"
[dependencies]
aho-corasick = "0.7.3"
-grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
log = "0.4.5"
regex = "1.1"
regex-syntax = "0.6.5"
diff --git a/grep-searcher/Cargo.toml b/grep-searcher/Cargo.toml
index f3120a80..886570dd 100644
--- a/grep-searcher/Cargo.toml
+++ b/grep-searcher/Cargo.toml
@@ -17,7 +17,7 @@ bstr = { version = "0.1.2", default-features = false, features = ["std"] }
bytecount = "0.5"
encoding_rs = "0.8.14"
encoding_rs_io = "0.1.6"
-grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
log = "0.4.5"
memmap = "0.7"
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index b6a97d27..c6ff7cc3 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -14,7 +14,7 @@ license = "Unlicense/MIT"
[dependencies]
grep-cli = { version = "0.1.1", path = "../grep-cli" }
-grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
+grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
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" }