From e1e13c7169f0fd896feba98234d08eb59c42e262 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 05:36:29 +0000 Subject: [PATCH] Update tower-http requirement from 0.4.0 to 0.5.0 Updates the requirements on [tower-http](https://github.com/tower-rs/tower-http) to permit the latest version. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.4.0...tower-http-0.5.0) --- updated-dependencies: - dependency-name: tower-http dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- kube-client/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 8701d864a..f89920459 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -48,7 +48,7 @@ warp = { version = "0.3", default-features = false, features = ["tls"] } 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"] } +tower-http = { version = "0.5.0", features = ["trace", "decompression-gzip"] } hyper = { version = "0.14.13", features = ["client", "http1", "stream", "tcp"] } thiserror = "1.0.29" backoff = "0.4.0" diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 9ed10cbf7..b4b6dc070 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -63,7 +63,7 @@ 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 } tower = { version = "0.4.13", optional = true, features = ["buffer", "filter", "util"] } -tower-http = { version = "0.4.0", optional = true, features = ["auth", "map-response-body", "trace"] } +tower-http = { version = "0.5.0", optional = true, features = ["auth", "map-response-body", "trace"] } hyper-timeout = {version = "0.4.1", optional = true } tame-oauth = { version = "0.9.1", features = ["gcp"], optional = true } pin-project = { version = "1.0.4", optional = true }