From 6a2617cccbd63414e2fc38473c2f415eabd0314a Mon Sep 17 00:00:00 2001 From: Arnav Singh Date: Tue, 16 Apr 2024 14:47:55 -0700 Subject: [PATCH] Update base64 to v0.22 --- Cargo.toml | 2 +- k8s-openapi-tests/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2e2714bcc7..4009c16878 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ include = [ links = "k8s-openapi-0.21.1" [dependencies] -base64 = { version = "0.21", default-features = false, features = [ +base64 = { version = "0.22", default-features = false, features = [ "alloc", # for base64::Engine::decode and base64::Engine::encode ] } chrono = { version = "0.4.1", default-features = false, features = [ diff --git a/k8s-openapi-tests/Cargo.toml b/k8s-openapi-tests/Cargo.toml index 566d75c81c..2f4208fa80 100644 --- a/k8s-openapi-tests/Cargo.toml +++ b/k8s-openapi-tests/Cargo.toml @@ -12,7 +12,7 @@ include = [ ] [dependencies] -base64 = { version = "0.21", default-features = false, features = [ +base64 = { version = "0.22", default-features = false, features = [ "alloc", # for base64::Engine::decode and base64::Engine::encode ] } bytes = { version = "1", default-features = false}