Bump reqwest_cookie_store from 0.5.0 to 0.6.0 (#1158)

Bumps [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) from 0.5.0 to 0.6.0.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pfernie/reqwest_cookie_store/commits/v0.6.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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:
dependabot[bot] 2023-07-15 13:41:55 +02:00 committed by GitHub
parent 961575cdc7
commit dfa9245eaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 11 deletions

28
Cargo.lock generated
View file

@ -741,13 +741,24 @@ dependencies = [
"version_check",
]
[[package]]
name = "cookie"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
[[package]]
name = "cookie_store"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa"
dependencies = [
"cookie",
"cookie 0.16.2",
"idna 0.2.3",
"log",
"publicsuffix",
@ -760,11 +771,11 @@ dependencies = [
[[package]]
name = "cookie_store"
version = "0.19.1"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5a18f35792056f8c7c2de9c002e7e4fe44c7b5f66e7d99f46468dbb730a7ea7"
checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
dependencies = [
"cookie",
"cookie 0.17.0",
"idna 0.3.0",
"log",
"publicsuffix",
@ -2995,7 +3006,7 @@ dependencies = [
"async-compression",
"base64 0.21.2",
"bytes",
"cookie",
"cookie 0.16.2",
"cookie_store 0.16.2",
"encoding_rs",
"futures-core",
@ -3036,13 +3047,12 @@ dependencies = [
[[package]]
name = "reqwest_cookie_store"
version = "0.5.0"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06b407c05de7a0f7e4cc2a56af5e9bd6468e509124e81078ce1f8bc2ed3536bf"
checksum = "ba529055ea150e42e4eb9c11dcd380a41025ad4d594b0cb4904ef28b037e1061"
dependencies = [
"bytes",
"cookie",
"cookie_store 0.19.1",
"cookie_store 0.20.0",
"reqwest",
"url",
]

View file

@ -39,7 +39,7 @@ openssl-sys = { version = "0.9.90", optional = true }
pad = "0.1.6"
regex = "1.9.1"
reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "json"] }
reqwest_cookie_store = "0.5.0"
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
# This is necessary for the homebrew build

View file

@ -42,7 +42,7 @@ regex = "1.9.1"
# Use trust-dns to avoid lookup failures on high concurrency
# https://github.com/seanmonstar/reqwest/issues/296
reqwest = { version = "0.11.18", features = ["gzip", "trust-dns", "cookies"] }
reqwest_cookie_store = "0.5.0"
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
# This is necessary for the homebrew build