chore(deps): Bump hyper from 1.1.0 to 1.2.0 (#338)

Bumps [hyper](https://github.com/hyperium/hyper) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hyperium/hyper/compare/v1.1.0...v1.2.0)

---
updated-dependencies:
- dependency-name: hyper
  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] 2024-03-18 19:26:09 +08:00 committed by GitHub
parent bf7af0193a
commit 8c285d3594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 8 deletions

15
Cargo.lock generated
View File

@ -621,7 +621,7 @@ dependencies = [
"http 1.1.0",
"http-body-util",
"humantime",
"hyper 1.1.0",
"hyper 1.2.0",
"hyper-rustls 0.26.0",
"hyper-util",
"indicatif",
@ -696,7 +696,7 @@ dependencies = [
"headers 0.4.0",
"http 1.1.0",
"http-range-header",
"hyper 1.1.0",
"hyper 1.2.0",
"hyper-util",
"rcgen",
"reqwest",
@ -753,7 +753,7 @@ dependencies = [
"dragonfly-client-core",
"hex",
"http-range-header",
"hyper 1.1.0",
"hyper 1.2.0",
"openssl",
"rcgen",
"reqwest",
@ -1270,9 +1270,9 @@ dependencies = [
[[package]]
name = "hyper"
version = "1.1.0"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a"
dependencies = [
"bytes",
"futures-channel",
@ -1284,6 +1284,7 @@ dependencies = [
"httpdate",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
"want",
]
@ -1310,7 +1311,7 @@ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
dependencies = [
"futures-util",
"http 1.1.0",
"hyper 1.1.0",
"hyper 1.2.0",
"hyper-util",
"log",
"rustls 0.22.2",
@ -1357,7 +1358,7 @@ dependencies = [
"futures-util",
"http 1.1.0",
"http-body 1.0.0",
"hyper 1.1.0",
"hyper 1.2.0",
"pin-project-lite",
"socket2",
"tokio",

View File

@ -23,7 +23,7 @@ thiserror = "1.0"
dragonfly-api = "2.0.106"
reqwest = { version = "0.11.25", features = ["stream", "native-tls", "rustls-tls"] }
rcgen = { version = "0.12.1", features = ["x509-parser"] }
hyper = { version = "1.1", features = ["full"] }
hyper = { version = "1.2", features = ["full"] }
hyper-util = { version = "0.1.2", features = ["client", "client-legacy", "tokio", "server-auto", "http1", "http2"] }
hyper-rustls = { version = "0.26", features = [ "http1", "http2", "logging" ] }
http-range-header = "0.4.0"