From e9b7a1d694107e2debeb79d7d2019a96e234a5e7 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 5 Aug 2024 14:00:57 +0200 Subject: [PATCH] Update base64 to 0.22 --- Cargo.lock | 10 ++++++++-- rustls-platform-verifier/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 652e38ed..6f6b288f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,6 +41,12 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "bitflags" version = "1.3.2" @@ -295,7 +301,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4" dependencies = [ - "base64", + "base64 0.21.3", "rustls-pki-types", ] @@ -310,7 +316,7 @@ name = "rustls-platform-verifier" version = "0.3.3" dependencies = [ "android_logger", - "base64", + "base64 0.22.1", "core-foundation", "core-foundation-sys", "jni", diff --git a/rustls-platform-verifier/Cargo.toml b/rustls-platform-verifier/Cargo.toml index 137bcb5b..eb7c128a 100644 --- a/rustls-platform-verifier/Cargo.toml +++ b/rustls-platform-verifier/Cargo.toml @@ -31,7 +31,7 @@ docsrs = ["jni"] [dependencies] rustls = { version = "0.23", default-features = false, features = ["std"] } log = { version = "0.4" } -base64 = { version = "0.21", optional = true } # Only used when the `cert-logging` feature is enabled. +base64 = { version = "0.22", optional = true } # Only used when the `cert-logging` feature is enabled. jni = { version = "0.19", default-features = false, optional = true } # Only used during doc generation once_cell = "1.9"