diff options
author | Dominic DiGiacomo <ddigiacomo@triptychlabs.io> | 2023-02-27 01:30:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 08:30:45 +0200 |
commit | 5e91489db91335b38b16af78253efb86b0be310e (patch) | |
tree | f477a189fe9493136cd7fe835bc98482285a2e95 | |
parent | ce94bf47ae3b964dc359241d832a02285895c7ad (diff) |
deps: bump `regexp` to `^1.7.0` (#17966)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 319c7be96..10234b6de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3638,9 +3638,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.6.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" +checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index b189b3da5..b4131c636 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -99,7 +99,7 @@ percent-encoding = "=2.2.0" 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.6.0" +regex = "^1.7.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"] } |