summaryrefslogtreecommitdiff
path: root/test_util/Cargo.toml
diff options
context:
space:
mode:
authorYiyu Lin <linyiyu1992@gmail.com>2023-04-13 09:08:01 +0800
committerGitHub <noreply@github.com>2023-04-13 03:08:01 +0200
commitd790ea7d533c3c48b09a2f16f3fef549aa96be78 (patch)
treeb31fc35baf1f634054f52e94626f0399d187b99b /test_util/Cargo.toml
parent19c3e4f6dc31fd78e2793d0596d6a9cc3a30580a (diff)
refactor(cli,ext,ops): cleanup `regex` with `lazy-regex` (#17296)
- bump deps: the newest `lazy-regex` need newer `oncecell` and `regex` - reduce `unwrap` - remove dep `lazy_static` - make more regex cached --------- Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'test_util/Cargo.toml')
-rw-r--r--test_util/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index 68443e492..cb1ea46cc 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -22,7 +22,7 @@ console_static_text.workspace = true
flate2.workspace = true
futures.workspace = true
hyper = { workspace = true, features = ["server", "http1", "http2", "runtime"] }
-lazy_static = "1.4.0"
+lazy-regex.workspace = true
lsp-types.workspace = true
nix.workspace = true
once_cell.workspace = true