From ba989f9c7bbc97e2d31f11eac0356f84b50060f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Feb 2023 04:07:56 +0000 Subject: [PATCH] Bump kube from 0.78.0 to 0.79.0 in /cmd/pinniped-proxy Bumps [kube](https://github.com/kube-rs/kube) from 0.78.0 to 0.79.0. - [Release notes](https://github.com/kube-rs/kube/releases) - [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md) - [Commits](https://github.com/kube-rs/kube/compare/0.78.0...0.79.0) --- updated-dependencies: - dependency-name: kube dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- cmd/pinniped-proxy/Cargo.lock | 65 +++++------------------------------ cmd/pinniped-proxy/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 58 deletions(-) diff --git a/cmd/pinniped-proxy/Cargo.lock b/cmd/pinniped-proxy/Cargo.lock index 905681874fc..6ae8a46e61e 100644 --- a/cmd/pinniped-proxy/Cargo.lock +++ b/cmd/pinniped-proxy/Cargo.lock @@ -910,48 +910,13 @@ dependencies = [ [[package]] name = "kube" -version = "0.78.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53ee2ba94546e32a5aef943e5831c6ac25592ff8dcfa8b2a06e0aaea90c69188" -dependencies = [ - "k8s-openapi", - "kube-client 0.78.0", - "kube-core 0.78.0", -] - -[[package]] -name = "kube-client" -version = "0.78.0" +version = "0.79.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c9ca1f597bd48ed26f45f601bf2fa3aaa0933b8d1652d883b8444519b72af4a" +checksum = "d1e74b6c3633982788dc51a02a356113b4b74e0db48929b2c7447cb57919b8ae" dependencies = [ - "base64 0.20.0", - "bytes", - "chrono", - "dirs-next", - "either", - "futures", - "http", - "http-body", - "hyper", - "hyper-openssl", - "hyper-timeout", - "jsonpath_lib", "k8s-openapi", - "kube-core 0.78.0", - "openssl", - "pem", - "pin-project", - "secrecy", - "serde", - "serde_json", - "serde_yaml", - "thiserror", - "tokio", - "tokio-util", - "tower", - "tower-http", - "tracing", + "kube-client", + "kube-core", ] [[package]] @@ -969,10 +934,12 @@ dependencies = [ "http", "http-body", "hyper", + "hyper-openssl", "hyper-timeout", "jsonpath_lib", "k8s-openapi", - "kube-core 0.79.0", + "kube-core", + "openssl", "pem", "pin-project", "secrecy", @@ -987,22 +954,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "kube-core" -version = "0.78.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61f2c6d1a2d1584859499eb05a41c5a44713818041621fa7515cfdbdf4769ea7" -dependencies = [ - "chrono", - "form_urlencoded", - "http", - "k8s-openapi", - "once_cell", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "kube-core" version = "0.79.0" @@ -1046,7 +997,7 @@ dependencies = [ "futures", "json-patch", "k8s-openapi", - "kube-client 0.79.0", + "kube-client", "parking_lot", "pin-project", "serde", diff --git a/cmd/pinniped-proxy/Cargo.toml b/cmd/pinniped-proxy/Cargo.toml index fe9611951ba..836b8421155 100644 --- a/cmd/pinniped-proxy/Cargo.toml +++ b/cmd/pinniped-proxy/Cargo.toml @@ -17,7 +17,7 @@ chrono = "0.4" env_logger = "0.10" hyper = { version = "0.14", features = ["server"] } hyper-tls = "0.5" -kube = { version = "0.78.0" } +kube = { version = "0.79.0" } kube-derive = { version = "0.78.0"} kube-runtime = "0.79.0" k8s-openapi = { version = "0.17.0", default-features = false}