Merge pull request #728 from vbrandl/dependabot/cargo/reqwest-0.11.24

Bump reqwest from 0.11.23 to 0.11.24
This commit is contained in:
Valentin Brandl 2024-02-02 14:01:53 +01:00 committed by GitHub
commit 7276da90b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 4 deletions

View File

@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bump `config` from 0.13.3 to 0.13.4 ([#705](https://github.com/vbrandl/hoc/pull/705)) - Bump `config` from 0.13.3 to 0.13.4 ([#705](https://github.com/vbrandl/hoc/pull/705))
- Bump `openssl` from 0.10.55 to 0.10.60 ([#706](https://github.com/vbrandl/hoc/pull/706)) - Bump `openssl` from 0.10.55 to 0.10.60 ([#706](https://github.com/vbrandl/hoc/pull/706))
- Bump `tokio` from 1.34.0 to 1.35.1 ([#707](https://github.com/vbrandl/hoc/pull/707), [#709](https://github.com/vbrandl/hoc/pull/709)) - Bump `tokio` from 1.34.0 to 1.35.1 ([#707](https://github.com/vbrandl/hoc/pull/707), [#709](https://github.com/vbrandl/hoc/pull/709))
- Bump `reqwest` from 0.11.22 to 0.11.23 ([#708](https://github.com/vbrandl/hoc/pull/708)) - Bump `reqwest` from 0.11.22 to 0.11.24 ([#708](https://github.com/vbrandl/hoc/pull/708), [#728](https://github.com/vbrandl/hoc/pull/728))
- Bump `anyhow` from 1.0.75 to 1.0.79 ([#710](https://github.com/vbrandl/hoc/pull/710), [#714](https://github.com/vbrandl/hoc/pull/714), [#720](https://github.com/vbrandl/hoc/pull/720)) - Bump `anyhow` from 1.0.75 to 1.0.79 ([#710](https://github.com/vbrandl/hoc/pull/710), [#714](https://github.com/vbrandl/hoc/pull/714), [#720](https://github.com/vbrandl/hoc/pull/720))
- Bump `futures` from 0.3.29 to 0.3.30 ([#711](https://github.com/vbrandl/hoc/pull/711)) - Bump `futures` from 0.3.29 to 0.3.30 ([#711](https://github.com/vbrandl/hoc/pull/711))
- Bump `awc` from 3.2.0 to 3.3.0 ([#712](https://github.com/vbrandl/hoc/pull/712)) - Bump `awc` from 3.2.0 to 3.3.0 ([#712](https://github.com/vbrandl/hoc/pull/712))

21
Cargo.lock generated
View File

@ -2160,9 +2160,9 @@ checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
[[package]] [[package]]
name = "reqwest" name = "reqwest"
version = "0.11.23" version = "0.11.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251"
dependencies = [ dependencies = [
"base64 0.21.2", "base64 0.21.2",
"bytes", "bytes",
@ -2182,9 +2182,11 @@ dependencies = [
"once_cell", "once_cell",
"percent-encoding", "percent-encoding",
"pin-project-lite", "pin-project-lite",
"rustls-pemfile",
"serde", "serde",
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
"sync_wrapper",
"system-configuration", "system-configuration",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
@ -2286,6 +2288,15 @@ dependencies = [
"sct", "sct",
] ]
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
"base64 0.21.2",
]
[[package]] [[package]]
name = "rustls-webpki" name = "rustls-webpki"
version = "0.101.4" version = "0.101.4"
@ -2533,6 +2544,12 @@ dependencies = [
"unicode-ident", "unicode-ident",
] ]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]] [[package]]
name = "system-configuration" name = "system-configuration"
version = "0.5.1" version = "0.5.1"

View File

@ -25,7 +25,7 @@ lazy_static = "1.4.0"
mime = "0.3" mime = "0.3"
number_prefix = "0.4.0" number_prefix = "0.4.0"
openssl-probe = "0.1.5" openssl-probe = "0.1.5"
reqwest = "0.11.23" reqwest = "0.11.24"
serde = "1.0.196" serde = "1.0.196"
serde_derive = "1.0.166" serde_derive = "1.0.166"
serde_json = "1.0.113" serde_json = "1.0.113"