From 78e4621a87e16d80536c59aba6e269cb2c49f697 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 05:12:17 +0000 Subject: [PATCH] Update hyper requirement from 0.14.27 to 1.0.1 Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [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/v0.14.27...v1.0.1) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- kube-client/Cargo.toml | 2 +- kube/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 8ae0e5fe1..703144074 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -49,7 +49,7 @@ http = "0.2.5" json-patch = "1.0.0" tower = { version = "0.4.13", features = ["limit"] } tower-http = { version = "0.4.0", features = ["trace", "decompression-gzip"] } -hyper = { version = "0.14.13", features = ["client", "http1", "stream", "tcp"] } +hyper = { version = "1.0.1", features = ["client", "http1", "stream", "tcp"] } thiserror = "1.0.29" backoff = "0.4.0" clap = { version = "4.0", default-features = false, features = ["std", "cargo", "derive"] } diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 101f53bcb..56be6f58f 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -58,7 +58,7 @@ tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = kube-core = { path = "../kube-core", version = "=0.87.1" } jsonpath_lib = { version = "0.3.0", optional = true } tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } -hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } +hyper = { version = "1.0.1", optional = true, features = ["client", "http1", "stream", "tcp"] } hyper-rustls = { version = "0.24.0", optional = true } hyper-socks2 = { version = "0.8.0", optional = true, default-features = false } tokio-tungstenite = { version = "0.20.0", optional = true } diff --git a/kube/Cargo.toml b/kube/Cargo.toml index cb8525012..f1f99ed08 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -61,7 +61,7 @@ futures = "0.3.17" serde_json = "1.0.68" serde = { version = "1.0.130", features = ["derive"] } schemars = "0.8.6" -hyper = "0.14.27" +hyper = "1.0.1" http = "0.2.9" tower-test = "0.4.0" anyhow = "1.0.71"