mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-18 12:11:14 +00:00
Bump reqwest from 0.11.18 to 0.11.19 (#1240)
Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.18 to 0.11.19. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.18...v0.11.19) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
88f0e8f8bf
commit
007650faf0
5 changed files with 8 additions and 17 deletions
17
Cargo.lock
generated
17
Cargo.lock
generated
|
|
@ -1924,7 +1924,7 @@ dependencies = [
|
|||
"socket2 0.5.3",
|
||||
"widestring",
|
||||
"windows-sys 0.48.0",
|
||||
"winreg 0.50.0",
|
||||
"winreg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -3005,9 +3005,9 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
|||
|
||||
[[package]]
|
||||
name = "reqwest"
|
||||
version = "0.11.18"
|
||||
version = "0.11.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
|
||||
checksum = "20b9b67e2ca7dd9e9f9285b759de30ff538aab981abaaf7bc9bd90b84a0126c3"
|
||||
dependencies = [
|
||||
"async-compression",
|
||||
"base64 0.21.2",
|
||||
|
|
@ -3048,7 +3048,7 @@ dependencies = [
|
|||
"wasm-bindgen",
|
||||
"wasm-bindgen-futures",
|
||||
"web-sys",
|
||||
"winreg 0.10.1",
|
||||
"winreg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -4486,15 +4486,6 @@ dependencies = [
|
|||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winreg"
|
||||
version = "0.10.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
||||
dependencies = [
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winreg"
|
||||
version = "0.50.0"
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features =
|
|||
tokio = { version = "1.32.0", features = ["full"] }
|
||||
regex = "1.9.3"
|
||||
http = "0.2.9"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] }
|
||||
reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] }
|
||||
|
||||
[features]
|
||||
email-check = ["lychee-lib/email-check"]
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ tokio = { version = "1.32.0", features = ["full"] }
|
|||
regex = "1.9.3"
|
||||
http = "0.2.9"
|
||||
tokio-stream = "0.1.14"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] }
|
||||
reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] }
|
||||
|
||||
[features]
|
||||
email-check = ["lychee-lib/email-check"]
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ once_cell = "1.18.0"
|
|||
openssl-sys = { version = "0.9.91", optional = true }
|
||||
pad = "0.1.6"
|
||||
regex = "1.9.3"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "json"] }
|
||||
reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "json"] }
|
||||
reqwest_cookie_store = "0.6.0"
|
||||
# Make build work on Apple Silicon.
|
||||
# See https://github.com/briansmith/ring/issues/1163
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ pulldown-cmark = "0.9.3"
|
|||
regex = "1.9.3"
|
||||
# Use trust-dns to avoid lookup failures on high concurrency
|
||||
# https://github.com/seanmonstar/reqwest/issues/296
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
|
||||
reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
|
||||
reqwest_cookie_store = "0.6.0"
|
||||
# Make build work on Apple Silicon.
|
||||
# See https://github.com/briansmith/ring/issues/1163
|
||||
|
|
|
|||
Loading…
Reference in a new issue