From be3b11f6c152ef248790297b0e2b28a8512548be Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Mon, 12 Jun 2023 12:21:47 +0000 Subject: [PATCH] Update Rust crate base64 to 0.21.2 (#1907) 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 | |---|---|---|---| | [base64](/~https://github.com/marshallpierce/rust-base64) | dependencies | patch | `0.21.0` -> `0.21.2` | --- ### Release Notes
marshallpierce/rust-base64 ### [`v0.21.2`](/~https://github.com/marshallpierce/rust-base64/blob/HEAD/RELEASE-NOTES.md#​0212) [Compare Source](/~https://github.com/marshallpierce/rust-base64/compare/v0.21.1...v0.21.2) - Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code ### [`v0.21.1`](/~https://github.com/marshallpierce/rust-base64/blob/HEAD/RELEASE-NOTES.md#​0211) [Compare Source](/~https://github.com/marshallpierce/rust-base64/compare/v0.21.0...v0.21.1) - Remove the possibility of panicking during decoded length calculations - `DecoderReader` no longer sometimes erroneously ignores padding [#​226](/~https://github.com/marshallpierce/rust-base64/issues/226) #### Breaking changes - `Engine.internal_decode` return type changed - Update MSRV to 1.60.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). Co-authored-by: cabr2-bot Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1907 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- crates/config/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 8ce35a3d..6929c5bb 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -base64 = "0.21.0" +base64 = "0.21.2" directories-next = "2.0.0" lazy_static = "1.4.0" log = "0.4.19"