From 0abd2bd19052981605ccc98ba1f5d51d12e4e67b Mon Sep 17 00:00:00 2001 From: Mathias Pius Date: Sat, 11 Nov 2023 23:00:55 +0100 Subject: [PATCH] Update kube-client's rustls dependency to `0.21.4` (#1341) Update kube-client's rustls dependency to 0.21.4 kube-client is incompatible with rustls versions prior to 0.21.4 due to the renaming of rustls::client::builder::ConfigBuilder::.with_client_auth_cert Fixes #1340 Signed-off-by: Mathias Pius --- kube-client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 88e656025..101f53bcb 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -51,7 +51,7 @@ thiserror = "1.0.29" futures = { version = "0.3.17", optional = true } pem = { version = "3.0.1", optional = true } openssl = { version = "0.10.36", optional = true } -rustls = { version = "0.21.0", features = ["dangerous_configuration"], optional = true } +rustls = { version = "0.21.4", features = ["dangerous_configuration"], optional = true } rustls-pemfile = { version = "1.0.0", optional = true } bytes = { version = "1.1.0", optional = true } tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }