diff --git a/Cargo.lock b/Cargo.lock index 0c8a5b1..efdd2c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2808,9 +2808,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.2" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c" +checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" dependencies = [ "aho-corasick", "memchr", diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 8dba20a..5d5b48b 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.2" +regex = "1.7.3" 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 e15d834..8fb2e41 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.2" +regex = "1.7.3" 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 2e093d4..412d0e4 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.83" pad = "0.1.6" -regex = "1.7.2" +regex = "1.7.3" 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 6fc2389..4594c20 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.83" pulldown-cmark = "0.9.2" -regex = "1.7.2" +regex = "1.7.3" # 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"] }