diff --git a/Cargo.lock b/Cargo.lock index fd6188f..ab3eb49 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2798,9 +2798,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.1" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" +checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c" dependencies = [ "aho-corasick", "memchr", @@ -2818,9 +2818,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.28" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reqwest" diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index ef3aecd..8dba20a 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.11.1" } tokio = { version = "1.26.0", features = ["full"] } -regex = "1.7.1" +regex = "1.7.2" http = "0.2.9" reqwest = { version = "0.11.15", features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 9968449..e15d834 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.11.1" } tokio = { version = "1.26.0", features = ["full"] } -regex = "1.7.1" +regex = "1.7.2" http = "0.2.9" tokio-stream = "0.1.12" reqwest = { version = "0.11.15", features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 2af80e4..11cfdda 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.82" pad = "0.1.6" -regex = "1.7.1" +regex = "1.7.2" reqwest = { version = "0.11.15", 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 baa0a04..4a6bcb4 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.82" pulldown-cmark = "0.9.2" -regex = "1.7.1" +regex = "1.7.2" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 reqwest = { version = "0.11.15", features = ["gzip", "trust-dns"] }