From b2eb61982fa9bc72c380a97fa04527b9c9bb9712 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Feb 2022 13:36:36 +0000 Subject: [PATCH] Update rustls-pemfile requirement from 0.2.1 to 0.3.0 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/0.2.1...v/0.3.0) --- 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 d8c92df68..9416762bc 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -53,7 +53,7 @@ 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-pemfile = { version = "0.2.1", 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 } kube-core = { path = "../kube-core", version = "^0.69.0"}