mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-23 14:34:46 +00:00
Merge pull request #925 from lycheeverse/dependabot/cargo/reqwest-0.11.14
This commit is contained in:
commit
22546a35ba
5 changed files with 13 additions and 7 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -367,6 +367,12 @@ version = "0.20.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
|
||||
|
||||
[[package]]
|
||||
name = "base64"
|
||||
version = "0.21.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
||||
|
||||
[[package]]
|
||||
name = "benches"
|
||||
version = "0.0.0"
|
||||
|
|
@ -2860,12 +2866,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "reqwest"
|
||||
version = "0.11.13"
|
||||
version = "0.11.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
|
||||
checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
|
||||
dependencies = [
|
||||
"async-compression",
|
||||
"base64 0.13.1",
|
||||
"base64 0.21.0",
|
||||
"bytes",
|
||||
"encoding_rs",
|
||||
"futures-core",
|
||||
|
|
|
|||
|
|
@ -12,4 +12,4 @@ lychee-lib = { path = "../../lychee-lib", version = "0.10.1" }
|
|||
tokio = { version = "1.24.2", features = ["full"] }
|
||||
regex = "1.7.1"
|
||||
http = "0.2.8"
|
||||
reqwest = { version = "0.11.13", features = ["gzip"] }
|
||||
reqwest = { version = "0.11.14", features = ["gzip"] }
|
||||
|
|
|
|||
|
|
@ -13,4 +13,4 @@ tokio = { version = "1.24.2", features = ["full"] }
|
|||
regex = "1.7.1"
|
||||
http = "0.2.8"
|
||||
tokio-stream = "0.1.11"
|
||||
reqwest = { version = "0.11.13", features = ["gzip"] }
|
||||
reqwest = { version = "0.11.14", features = ["gzip"] }
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ indicatif = "0.17.3"
|
|||
openssl-sys = "0.9.80"
|
||||
pad = "0.1.6"
|
||||
regex = "1.7.1"
|
||||
reqwest = { version = "0.11.13", features = ["gzip"] }
|
||||
reqwest = { version = "0.11.14", features = ["gzip"] }
|
||||
# Make build work on Apple Silicon.
|
||||
# See https://github.com/briansmith/ring/issues/1163
|
||||
# This is necessary for the homebrew build
|
||||
|
|
|
|||
|
|
@ -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.13", features = ["gzip", "trust-dns"] }
|
||||
reqwest = { version = "0.11.14", 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue