From cc06ea4c0fa8dd734e3c135e012534d70e672461 Mon Sep 17 00:00:00 2001 From: clux Date: Tue, 5 Mar 2024 21:02:40 +0000 Subject: [PATCH] cargo upgrade -p rustls -p rustls-pemfile -i Signed-off-by: clux --- kube-client/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 3949aca0a..47ef5c0f8 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -51,8 +51,8 @@ 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.4", features = ["dangerous_configuration"], optional = true } -rustls-pemfile = { version = "1.0.0", optional = true } +rustls = { version = "0.23.1", features = ["dangerous_configuration"], optional = true } +rustls-pemfile = { version = "2.1.1", optional = true } bytes = { version = "1.1.0", optional = true } tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } kube-core = { path = "../kube-core", version = "=0.88.1" }