From 5f2cc4910c0e58f194384dfed41b4097b3a67065 Mon Sep 17 00:00:00 2001 From: Vladimir Pouzanov Date: Sun, 13 Feb 2022 17:44:16 +0000 Subject: [PATCH] Bump rustls to the verson that supports Sec1 EC keys Signed-off-by: Vladimir Pouzanov --- 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 009ab85df..41792745a 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -52,7 +52,7 @@ futures = { version = "0.3.17", optional = true } pem = { version = "1.0.1", optional = true } openssl = { version = "0.10.36", optional = true } tokio-native-tls = { version = "0.3.0", optional = true } -rustls = { version = "0.20.1", features = ["dangerous_configuration"], optional = true } +rustls = { version = "0.20.3", features = ["dangerous_configuration"], optional = true } rustls-pemfile = { version = "0.3.0", optional = true } bytes = { version = "1.1.0", optional = true } tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }