From 49346ef3d86126abe01906606d68d535c7323b56 Mon Sep 17 00:00:00 2001 From: jrconlin Date: Tue, 14 May 2024 09:35:02 -0700 Subject: [PATCH] chore: update for May, 2024 * minor bump for base64 and proof build for openssl --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d8c1465..d4e535c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "fernet" version = "0.2.1" -authors = ["Alex Gaynor ", "Ben Bangert "] +authors = [ + "Alex Gaynor ", + "Ben Bangert ", +] description = "An implementation of fernet in Rust." repository = "https://github.com/mozilla-services/fernet-rs/" homepage = "https://github.com/mozilla-services/fernet-rs/" @@ -22,7 +25,7 @@ rustcrypto = ["aes", "cbc", "sha2", "hmac", "subtle"] features = ["fernet_danger_timestamps"] [dependencies] -base64 = "0.21" +base64 = "0.22" byteorder = "1" openssl = { version = "0.10", optional = true } getrandom = "0.2"