diff options
| author | Yiyu Lin <linyiyu1992@gmail.com> | 2023-04-13 09:08:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-13 03:08:01 +0200 |
| commit | d790ea7d533c3c48b09a2f16f3fef549aa96be78 (patch) | |
| tree | b31fc35baf1f634054f52e94626f0399d187b99b /Cargo.toml | |
| parent | 19c3e4f6dc31fd78e2793d0596d6a9cc3a30580a (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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 49df110f0..6d95adf39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,6 +110,7 @@ pin-project = "1.0.11" # don't pin because they yank crates from cargo pretty_assertions = "=1.3.0" rand = "=0.8.5" regex = "^1.7.0" +lazy-regex = "2.5.0" reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks"] } ring = "=0.16.20" rusqlite = { version = "=0.28.0", features = ["unlock_notify", "bundled"] } |
