From b3a9f42e4c6dd7e9657d525baa68783ad3016578 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Dec 2022 02:30:22 +0000 Subject: [PATCH] Update base64 requirement from 0.13.0 to 0.20.0 Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Release notes](https://github.com/marshallpierce/rust-base64/releases) - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.0...v0.20.0) --- updated-dependencies: - dependency-name: base64 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 8936e13c7..14f47e21e 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -36,7 +36,7 @@ features = ["client", "rustls-tls", "openssl-tls", "ws", "oauth", "jsonpatch", " rustdoc-args = ["--cfg", "docsrs"] [dependencies] -base64 = { version = "0.13.0", optional = true } +base64 = { version = "0.20.0", optional = true } chrono = { version = "0.4.23", optional = true, default-features = false } dirs = { package = "dirs-next", optional = true, version = "2.0.0" } serde = { version = "1.0.130", features = ["derive"] }