summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-04-15 17:56:04 -0400
committerAndrew Gallant <jamslam@gmail.com>2019-04-15 17:56:04 -0400
commit44cd3444380307a4b137fb427e8f8e67d95f4a48 (patch)
tree2e6dfeeb9ef97069b7467dd6e57cfc77dc9852ab
parente493e54b9b81d729b748d378a5166112da305eb9 (diff)
grep-regex: release 0.1.3grep-regex-0.1.3
-rw-r--r--Cargo.lock8
-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
5 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index aa2c6a92..76c68c5c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -155,7 +155,7 @@ dependencies = [
"grep-matcher 0.1.2",
"grep-pcre2 0.1.2",
"grep-printer 0.1.1",
- "grep-regex 0.1.2",
+ "grep-regex 0.1.3",
"grep-searcher 0.1.3",
"termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
"walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -199,7 +199,7 @@ 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.2",
- "grep-regex 0.1.2",
+ "grep-regex 0.1.3",
"grep-searcher 0.1.3",
"serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -209,7 +209,7 @@ dependencies = [
[[package]]
name = "grep-regex"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"grep-matcher 0.1.2",
@@ -229,7 +229,7 @@ dependencies = [
"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-regex 0.1.2",
+ "grep-regex 0.1.3",
"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)",
"regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/grep-printer/Cargo.toml b/grep-printer/Cargo.toml
index 3ff5fac4..9d00ffe7 100644
--- a/grep-printer/Cargo.toml
+++ b/grep-printer/Cargo.toml
@@ -28,4 +28,4 @@ serde_derive = { version = "1.0.77", optional = true }
serde_json = { version = "1.0.27", optional = true }
[dev-dependencies]
-grep-regex = { version = "0.1.1", path = "../grep-regex" }
+grep-regex = { version = "0.1.3", path = "../grep-regex" }
diff --git a/grep-regex/Cargo.toml b/grep-regex/Cargo.toml
index 0ac13627..959596fe 100644
--- a/grep-regex/Cargo.toml
+++ b/grep-regex/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-regex"
-version = "0.1.2" #:version
+version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use Rust's regex library with the 'grep' crate.
diff --git a/grep-searcher/Cargo.toml b/grep-searcher/Cargo.toml
index 886570dd..ca60d2e3 100644
--- a/grep-searcher/Cargo.toml
+++ b/grep-searcher/Cargo.toml
@@ -22,7 +22,7 @@ log = "0.4.5"
memmap = "0.7"
[dev-dependencies]
-grep-regex = { version = "0.1.1", path = "../grep-regex" }
+grep-regex = { version = "0.1.3", path = "../grep-regex" }
regex = "1.1"
[features]
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index c6ff7cc3..1b2efdb0 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -17,7 +17,7 @@ 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-printer = { version = "0.1.1", path = "../grep-printer" }
-grep-regex = { version = "0.1.1", path = "../grep-regex" }
+grep-regex = { version = "0.1.3", path = "../grep-regex" }
grep-searcher = { version = "0.1.1", path = "../grep-searcher" }
[dev-dependencies]