From e80edcdfb34e784d936a6d956018321129977efe Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 23 May 2024 09:34:15 +0000 Subject: [PATCH] Update Rust crate base32 to 0.5.0 (#24) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [base32](https://github.com/andreasots/base32) | dependencies | minor | `0.4.0` -> `0.5.0` | --- ### Release Notes
andreasots/base32 (base32) ### [`v0.5.0`](https://github.com/andreasots/base32/compare/v0.4.0...v0.5.0) [Compare Source](https://github.com/andreasots/base32/compare/v0.4.0...v0.5.0)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.communiquons.org/pierre/TOTP-Generator/pulls/24 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a120900..95b8e53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,9 +52,9 @@ dependencies = [ [[package]] name = "base32" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa" +checksum = "d1ce0365f4d5fb6646220bb52fe547afd51796d90f914d4063cb0b032ebee088" [[package]] name = "cc" diff --git a/Cargo.toml b/Cargo.toml index 1d4e6fe..3e0afcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" [dependencies] totp_rfc6238 = "0.5.3" -base32 = "0.4.0" +base32 = "0.5.0" clap = { version = "4.5.4", features = ["derive"] } diff --git a/src/main.rs b/src/main.rs index 67231c0..f2949a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -77,7 +77,7 @@ fn main() { .set_hash_algorithm(HashAlgorithm::SHA1) .build(); - let key = base32::decode(Alphabet::RFC4648 { padding: true }, &secret).unwrap(); + let key = base32::decode(Alphabet::Rfc4648 { padding: true }, &secret).unwrap(); let code = totp_generator.get_code(&key); let next_update = totp_generator.get_next_update_time().unwrap();