summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2021-06-12 08:05:36 -0400
committerAndrew Gallant <jamslam@gmail.com>2021-06-12 08:05:36 -0400
commita34df1f6904839db8295b9303dd6b771604b8394 (patch)
treed7fff9b97ffaf54fe9d0e019876b5b61a84310de
parent7f3fd6f7cee10bc4089a0fdc43a410be4ad21447 (diff)
deps/regex: update minimal versions
-rw-r--r--crates/grep/Cargo.toml2
-rw-r--r--crates/printer/Cargo.toml2
-rw-r--r--crates/searcher/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index 43a743a9..cece9357 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -18,7 +18,7 @@ grep-cli = { version = "0.1.6", path = "../cli" }
grep-matcher = { version = "0.1.5", path = "../matcher" }
grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
grep-printer = { version = "0.1.5", path = "../printer" }
-grep-regex = { version = "0.1.8", path = "../regex" }
+grep-regex = { version = "0.1.9", path = "../regex" }
grep-searcher = { version = "0.1.7", path = "../searcher" }
[dev-dependencies]
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index 257ff75b..7f9d3a56 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -28,4 +28,4 @@ serde = { version = "1.0.77", optional = true, features = ["derive"] }
serde_json = { version = "1.0.27", optional = true }
[dev-dependencies]
-grep-regex = { version = "0.1.3", path = "../regex" }
+grep-regex = { version = "0.1.9", path = "../regex" }
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 073d96c7..e774e89a 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -23,7 +23,7 @@ log = "0.4.5"
memmap = { package = "memmap2", version = "0.3.0" }
[dev-dependencies]
-grep-regex = { version = "0.1.3", path = "../regex" }
+grep-regex = { version = "0.1.9", path = "../regex" }
regex = "1.1"
[features]