summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2023-01-05 09:05:39 -0500
committerAndrew Gallant <jamslam@gmail.com>2023-01-05 09:05:39 -0500
commit180c4eaf8b5d7f6716608e97e3d1080ada9e9a49 (patch)
tree3a23c2fef5fcd826967316cf45fef0244c93d490
parent81529288cfdbb88c3d1e6d4892d30201b956e033 (diff)
deps: update to grep-regex 0.1.11
-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 e79b9608..d8555019 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -18,7 +18,7 @@ grep-cli = { version = "0.1.7", path = "../cli" }
grep-matcher = { version = "0.1.6", path = "../matcher" }
grep-pcre2 = { version = "0.1.5", path = "../pcre2", optional = true }
grep-printer = { version = "0.1.6", path = "../printer" }
-grep-regex = { version = "0.1.10", path = "../regex" }
+grep-regex = { version = "0.1.11", path = "../regex" }
grep-searcher = { version = "0.1.10", path = "../searcher" }
[dev-dependencies]
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index 9d663696..be5159d2 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.9", path = "../regex" }
+grep-regex = { version = "0.1.11", path = "../regex" }
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 9e88efe4..37360375 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -23,7 +23,7 @@ log = "0.4.5"
memmap = { package = "memmap2", version = "0.5.3" }
[dev-dependencies]
-grep-regex = { version = "0.1.10", path = "../regex" }
+grep-regex = { version = "0.1.11", path = "../regex" }
regex = "1.1"
[features]