diff --git a/Cargo.lock b/Cargo.lock index bd07c60..31fa8de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2852,9 +2852,9 @@ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" [[package]] name = "reqwest" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" +checksum = "0ba30cc2c0cd02af1222ed216ba659cdb2f879dfe3181852fe7c50b1d0005949" dependencies = [ "async-compression", "base64 0.21.0", diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index f529d48..ef3aecd 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -12,4 +12,4 @@ lychee-lib = { path = "../../lychee-lib", version = "0.11.1" } tokio = { version = "1.26.0", features = ["full"] } regex = "1.7.1" http = "0.2.9" -reqwest = { version = "0.11.14", features = ["gzip"] } +reqwest = { version = "0.11.15", features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index b6c27ee..9968449 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -13,4 +13,4 @@ tokio = { version = "1.26.0", features = ["full"] } regex = "1.7.1" http = "0.2.9" tokio-stream = "0.1.12" -reqwest = { version = "0.11.14", features = ["gzip"] } +reqwest = { version = "0.11.15", features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 83aa475..2af80e4 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -27,7 +27,7 @@ indicatif = "0.17.3" openssl-sys = "0.9.82" pad = "0.1.6" regex = "1.7.1" -reqwest = { version = "0.11.14", features = ["gzip"] } +reqwest = { version = "0.11.15", features = ["gzip"] } # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 # This is necessary for the homebrew build diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index db68c2a..760a50b 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -27,7 +27,7 @@ pulldown-cmark = "0.9.2" regex = "1.7.1" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 -reqwest = { version = "0.11.14", features = ["gzip", "trust-dns"] } +reqwest = { version = "0.11.15", features = ["gzip", "trust-dns"] } # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 # This is necessary for the homebrew build