summaryrefslogtreecommitdiffstats
path: root/grep
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-09-07 13:14:31 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-09-07 14:00:22 -0400
commitd14f0b37d651b276fcd6a6938b0da918b17f3326 (patch)
treec06de798b5df66dd9bd51049444c02b93be8163f /grep
parent3ddc3c040f7a0a6896738fc1d6dbe57fd75566b4 (diff)
deps: update versions for all crates
I don't think every change here is needed, but this ensures we're using the latest version of every direct dependency.
Diffstat (limited to 'grep')
-rw-r--r--grep/Cargo.toml14
1 files changed, 7 insertions, 7 deletions
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index 5d3a00dd..8faf7082 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep"
-version = "0.2.1" #:version
+version = "0.2.2" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
@@ -13,12 +13,12 @@ keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
-grep-cli = { version = "0.1.0", path = "../grep-cli" }
-grep-matcher = { version = "0.1.0", path = "../grep-matcher" }
-grep-pcre2 = { version = "0.1.0", path = "../grep-pcre2", optional = true }
-grep-printer = { version = "0.1.0", path = "../grep-printer" }
-grep-regex = { version = "0.1.0", path = "../grep-regex" }
-grep-searcher = { version = "0.1.0", path = "../grep-searcher" }
+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-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" }
[dev-dependencies]
atty = "0.2.11"