From 251a1d4f8f6b4a77382db61a3e6ac054542aa7b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 22:26:21 +0200 Subject: [PATCH] Bump regex from 1.7.3 to 1.8.1 (#1051) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.7.3...1.8.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 18 ++++++++++++------ examples/builder/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 2 +- lychee-lib/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6eb54d5..3049157 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aho-corasick" -version = "0.7.20" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" dependencies = [ "memchr", ] @@ -2865,13 +2865,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.3" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ "aho-corasick", "memchr", - "regex-syntax", + "regex-syntax 0.7.1", ] [[package]] @@ -2880,7 +2880,7 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" dependencies = [ - "regex-syntax", + "regex-syntax 0.6.29", ] [[package]] @@ -2889,6 +2889,12 @@ version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +[[package]] +name = "regex-syntax" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" + [[package]] name = "reqwest" version = "0.11.16" diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 43af8f6..e9ee0f3 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -10,6 +10,6 @@ path = "builder.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", version = "0.12.0" } tokio = { version = "1.27.0", features = ["full"] } -regex = "1.7.3" +regex = "1.8.1" http = "0.2.9" reqwest = { version = "0.11.16", features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 82e40f6..be68007 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -10,7 +10,7 @@ path = "collect_links.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", version = "0.12.0" } tokio = { version = "1.27.0", features = ["full"] } -regex = "1.7.3" +regex = "1.8.1" http = "0.2.9" tokio-stream = "0.1.12" reqwest = { version = "0.11.16", features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index f502d5a..d00440a 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -26,7 +26,7 @@ http = "0.2.9" indicatif = "0.17.3" openssl-sys = "0.9.86" pad = "0.1.6" -regex = "1.7.3" +regex = "1.8.1" reqwest = { version = "0.11.16", features = ["gzip"] } # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 9249b16..2df61bc 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -24,7 +24,7 @@ http = "0.2.9" linkify = "0.9.0" openssl-sys = "0.9.86" pulldown-cmark = "0.9.2" -regex = "1.7.3" +regex = "1.8.1" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 reqwest = { version = "0.11.16", features = ["gzip", "trust-dns"] }