summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2023-11-26 14:15:34 -0500
committerAndrew Gallant <jamslam@gmail.com>2023-11-26 14:15:34 -0500
commit54d5540c10e485346150ad63e6a1fe8ad705e2f4 (patch)
treeae5df444bb28c2237950b1f8902c11b976b2e2c2
parentd0251c77fe96412310110aeb9383f20436a9f97e (diff)
deps: bump grep-matcher to 0.1.7
-rw-r--r--crates/grep/Cargo.toml2
-rw-r--r--crates/pcre2/Cargo.toml2
-rw-r--r--crates/printer/Cargo.toml2
-rw-r--r--crates/regex/Cargo.toml2
-rw-r--r--crates/searcher/Cargo.toml2
5 files changed, 5 insertions, 5 deletions
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index 0b189373..b1d8b96b 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -15,7 +15,7 @@ edition = "2021"
[dependencies]
grep-cli = { version = "0.1.10", path = "../cli" }
-grep-matcher = { version = "0.1.6", path = "../matcher" }
+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" }
diff --git a/crates/pcre2/Cargo.toml b/crates/pcre2/Cargo.toml
index 6d8ba7b4..f7ada83f 100644
--- a/crates/pcre2/Cargo.toml
+++ b/crates/pcre2/Cargo.toml
@@ -14,6 +14,6 @@ license = "Unlicense OR MIT"
edition = "2018"
[dependencies]
-grep-matcher = { version = "0.1.6", path = "../matcher" }
+grep-matcher = { version = "0.1.7", path = "../matcher" }
log = "0.4.20"
pcre2 = "0.2.6"
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index caec3576..d880ab56 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -20,7 +20,7 @@ serde = ["dep:serde", "dep:serde_json"]
[dependencies]
bstr = "1.6.2"
-grep-matcher = { version = "0.1.6", path = "../matcher" }
+grep-matcher = { version = "0.1.7", path = "../matcher" }
grep-searcher = { version = "0.1.11", path = "../searcher" }
log = "0.4.5"
termcolor = "1.3.0"
diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml
index f3266081..5c87c3fd 100644
--- a/crates/regex/Cargo.toml
+++ b/crates/regex/Cargo.toml
@@ -15,7 +15,7 @@ edition = "2021"
[dependencies]
bstr = "1.6.2"
-grep-matcher = { version = "0.1.6", path = "../matcher" }
+grep-matcher = { version = "0.1.7", path = "../matcher" }
log = "0.4.20"
regex-automata = { version = "0.4.0" }
regex-syntax = "0.8.0"
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 75f42775..1c1d8de8 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -17,7 +17,7 @@ edition = "2021"
bstr = { version = "1.6.2", default-features = false, features = ["std"] }
encoding_rs = "0.8.33"
encoding_rs_io = "0.1.7"
-grep-matcher = { version = "0.1.6", path = "../matcher" }
+grep-matcher = { version = "0.1.7", path = "../matcher" }
log = "0.4.20"
memchr = "2.6.3"
memmap = { package = "memmap2", version = "0.9.0" }