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:
parent
bf7af0193a
commit
8c285d3594
|
|
@ -621,7 +621,7 @@ dependencies = [
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
"http-body-util",
|
"http-body-util",
|
||||||
"humantime",
|
"humantime",
|
||||||
"hyper 1.1.0",
|
"hyper 1.2.0",
|
||||||
"hyper-rustls 0.26.0",
|
"hyper-rustls 0.26.0",
|
||||||
"hyper-util",
|
"hyper-util",
|
||||||
"indicatif",
|
"indicatif",
|
||||||
|
|
@ -696,7 +696,7 @@ dependencies = [
|
||||||
"headers 0.4.0",
|
"headers 0.4.0",
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
"http-range-header",
|
"http-range-header",
|
||||||
"hyper 1.1.0",
|
"hyper 1.2.0",
|
||||||
"hyper-util",
|
"hyper-util",
|
||||||
"rcgen",
|
"rcgen",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
|
|
@ -753,7 +753,7 @@ dependencies = [
|
||||||
"dragonfly-client-core",
|
"dragonfly-client-core",
|
||||||
"hex",
|
"hex",
|
||||||
"http-range-header",
|
"http-range-header",
|
||||||
"hyper 1.1.0",
|
"hyper 1.2.0",
|
||||||
"openssl",
|
"openssl",
|
||||||
"rcgen",
|
"rcgen",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
|
|
@ -1270,9 +1270,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hyper"
|
name = "hyper"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
|
checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"futures-channel",
|
"futures-channel",
|
||||||
|
|
@ -1284,6 +1284,7 @@ dependencies = [
|
||||||
"httpdate",
|
"httpdate",
|
||||||
"itoa",
|
"itoa",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
|
"smallvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"want",
|
"want",
|
||||||
]
|
]
|
||||||
|
|
@ -1310,7 +1311,7 @@ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
"hyper 1.1.0",
|
"hyper 1.2.0",
|
||||||
"hyper-util",
|
"hyper-util",
|
||||||
"log",
|
"log",
|
||||||
"rustls 0.22.2",
|
"rustls 0.22.2",
|
||||||
|
|
@ -1357,7 +1358,7 @@ dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
"http-body 1.0.0",
|
"http-body 1.0.0",
|
||||||
"hyper 1.1.0",
|
"hyper 1.2.0",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"socket2",
|
"socket2",
|
||||||
"tokio",
|
"tokio",
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ thiserror = "1.0"
|
||||||
dragonfly-api = "2.0.106"
|
dragonfly-api = "2.0.106"
|
||||||
reqwest = { version = "0.11.25", features = ["stream", "native-tls", "rustls-tls"] }
|
reqwest = { version = "0.11.25", features = ["stream", "native-tls", "rustls-tls"] }
|
||||||
rcgen = { version = "0.12.1", features = ["x509-parser"] }
|
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-util = { version = "0.1.2", features = ["client", "client-legacy", "tokio", "server-auto", "http1", "http2"] }
|
||||||
hyper-rustls = { version = "0.26", features = [ "http1", "http2", "logging" ] }
|
hyper-rustls = { version = "0.26", features = [ "http1", "http2", "logging" ] }
|
||||||
http-range-header = "0.4.0"
|
http-range-header = "0.4.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue