summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 b1d8b96b..2c6345f0 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -18,7 +18,7 @@ grep-cli = { version = "0.1.10", path = "../cli" }
grep-matcher = { version = "0.1.7", path = "../matcher" }
grep-pcre2 = { version = "0.1.6", path = "../pcre2", optional = true }
grep-printer = { version = "0.1.7", path = "../printer" }
-grep-regex = { version = "0.1.11", path = "../regex" }
+grep-regex = { version = "0.1.12", path = "../regex" }
grep-searcher = { version = "0.1.11", path = "../searcher" }
[dev-dependencies]
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index d880ab56..a3d528ac 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -28,7 +28,7 @@ serde = { version = "1.0.193", optional = true }
serde_json = { version = "1.0.107", optional = true }
[dev-dependencies]
-grep-regex = { version = "0.1.11", path = "../regex" }
+grep-regex = { version = "0.1.12", path = "../regex" }
[package.metadata.docs.rs]
# We want to document all features.
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 1c1d8de8..ff194f80 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -23,7 +23,7 @@ memchr = "2.6.3"
memmap = { package = "memmap2", version = "0.9.0" }
[dev-dependencies]
-grep-regex = { version = "0.1.11", path = "../regex" }
+grep-regex = { version = "0.1.12", path = "../regex" }
regex = "1.9.5"
[features]