From 586b7cef54e69701f178150b9787c649113b2425 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 05:57:45 +0000 Subject: [PATCH] Update rustls-pemfile requirement from 1.0.0 to 2.1.1 Updates the requirements on [rustls-pemfile](https://github.com/rustls/pemfile) to permit the latest version. - [Release notes](https://github.com/rustls/pemfile/releases) - [Commits](https://github.com/rustls/pemfile/compare/v/1.0.0...v/2.1.1) --- updated-dependencies: - dependency-name: rustls-pemfile dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- 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 3949aca0a..fbb7e24a0 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -52,7 +52,7 @@ 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-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" }