From e80c102dee181a623b802e610fe17548fa877c6f Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 21 Jun 2023 20:37:06 -0400 Subject: [PATCH] regex: tweak formatting of regex-automata version spec This makes it easier to enable the `logging` feature for regex-automata. I wish I could just enable it unconditionally, but it winds up producing a lot of output because ripgrep uses regexes for things other than the primary search (like every glob). Sigh. --- crates/regex/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml index 039f0b09..a844ad5c 100644 --- a/crates/regex/Cargo.toml +++ b/crates/regex/Cargo.toml @@ -18,5 +18,5 @@ aho-corasick = "1.0.2" bstr = "1.5.0" grep-matcher = { version = "0.1.6", path = "../matcher" } log = "0.4.19" -regex-automata = "0.3.0" +regex-automata = { version = "0.3.0" } regex-syntax = "0.7.2"