diff --git a/cmd/pinniped-proxy/Cargo.lock b/cmd/pinniped-proxy/Cargo.lock index da839dc38b5..42b422ef6d1 100644 --- a/cmd/pinniped-proxy/Cargo.lock +++ b/cmd/pinniped-proxy/Cargo.lock @@ -915,41 +915,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "414d80c69906a91e8ecf4ae16d0fb504e19aa6b099135d35d85298b4e4be3ed3" dependencies = [ "k8s-openapi", - "kube-client 0.80.0", - "kube-core 0.80.0", -] - -[[package]] -name = "kube-client" -version = "0.79.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e9065963ad9966fea4a977efaf1eb22381b56ef4882ef19155869649669dfc" -dependencies = [ - "base64 0.20.0", - "bytes", - "chrono", - "dirs-next", - "either", - "futures", - "http", - "http-body", - "hyper", - "hyper-timeout", - "jsonpath_lib", - "k8s-openapi", - "kube-core 0.79.0", - "pem", - "pin-project", - "secrecy", - "serde", - "serde_json", - "serde_yaml", - "thiserror", - "tokio", - "tokio-util", - "tower", - "tower-http", - "tracing", + "kube-client", + "kube-core", ] [[package]] @@ -971,7 +938,7 @@ dependencies = [ "hyper-timeout", "jsonpath_lib", "k8s-openapi", - "kube-core 0.80.0", + "kube-core", "openssl", "pem", "pin-project", @@ -987,23 +954,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "kube-core" -version = "0.79.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "381a6982f9f48aec74022ae3e7012f990e2d9893bdafc9d4fb2c58521899440d" -dependencies = [ - "chrono", - "form_urlencoded", - "http", - "json-patch", - "k8s-openapi", - "once_cell", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "kube-core" version = "0.80.0" @@ -1013,6 +963,7 @@ dependencies = [ "chrono", "form_urlencoded", "http", + "json-patch", "k8s-openapi", "once_cell", "serde", @@ -1035,9 +986,9 @@ dependencies = [ [[package]] name = "kube-runtime" -version = "0.79.0" +version = "0.80.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a11c9e91acd9115b92a7d6cf7210a50b1fdf6d341a146fb0e7eb3423d1548d4" +checksum = "b698eb8998b46683b0dc3c2ce72c80bc308fc8159f25afa719668c290a037a57" dependencies = [ "ahash", "async-trait", @@ -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 10cacd3193f..f57b93e1200 100644 --- a/cmd/pinniped-proxy/Cargo.toml +++ b/cmd/pinniped-proxy/Cargo.toml @@ -19,7 +19,7 @@ hyper = { version = "0.14", features = ["server"] } hyper-tls = "0.5" kube = { version = "0.80.0" } kube-derive = { version = "0.80.0"} -kube-runtime = "0.79.0" +kube-runtime = "0.80.0" k8s-openapi = { version = "0.17.0", default-features = false} log = "0.4" native-tls = "0.2"