fix(deps): update rust crate base64 to 0.23.0 - #30
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
March 16, 2023 17:50
c4cd252 to
6205933
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
May 28, 2023 12:17
6205933 to
076bfd1
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
August 26, 2023 14:19
076bfd1 to
4bcdc43
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
September 10, 2023 01:56
4bcdc43 to
80afb11
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
October 23, 2023 15:48
80afb11 to
8a6d3e4
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
November 28, 2023 14:44
8a6d3e4 to
363fed2
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
January 8, 2024 16:54
363fed2 to
cde9af8
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
January 11, 2024 19:37
cde9af8 to
aa0997c
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
March 2, 2024 03:44
aa0997c to
b7e501a
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
May 1, 2024 00:44
b7e501a to
b7022a8
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
May 5, 2024 10:30
b7022a8 to
45cbfc6
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
August 10, 2025 12:31
45cbfc6 to
3e10961
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
September 25, 2025 15:27
3e10961 to
575158e
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
December 10, 2025 11:36
575158e to
75831db
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
July 23, 2026 15:36
75831db to
4e1e19e
Compare
renovate
Bot
force-pushed
the
renovate/base64-0.x
branch
from
August 4, 2026 13:48
4e1e19e to
e655070
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.13.0→0.23.0Release Notes
marshallpierce/rust-base64 (base64)
v0.23.1Compare Source
v0.23.0Compare Source
simd-unsafefeature:Simdpicks the bestinstruction set at runtime (AVX2 on
x86_64, NEON onaarch64) and falls back to the scalarGeneralPurposeengine, whileAvx2andNeontarget one instruction set with no runtimedetection and work in
no_std. The engines support the standard and URL-safe alphabets.v0.22.1Compare Source
alphabet::BIN_HEX.v0.22.0Compare Source
DecodeSliceError::OutputSliceTooSmallis now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning thatEngine::decode_slicecan now be used with exactly-sized output slices. As part of this,Engine::internal_decodenow returnsDecodeSliceErrorinstead ofDecodeError, but that is not expected to affect any external callers.DecodeError::InvalidLengthnow refers specifically to the number of valid symbols being invalid (i.e.len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for eitherInvalidLengthorInvalidBytebeing appropriate.v0.21.7Compare Source
Alphabet::as_str()v0.21.6Compare Source
v0.21.5Compare Source
DebugandCloneimpls for the general purpose Enginev0.21.4Compare Source
encoded_lenconst, allowing the creation of arrays sized to encode compile-time-known data lengthsv0.21.3Compare Source
sourceinstead ofcauseon Error typesv0.21.2Compare Source
v0.21.1Compare Source
DecoderReaderno longer sometimes erroneously ignorespadding #226
Breaking changes
Engine.internal_decodereturn type changedv0.21.0Compare Source
Migration
Functions
encode()engine::general_purpose::STANDARD.encode()orprelude::BASE64_STANDARD.encode()encode_config()engine.encode()encode_config_buf()engine.encode_string()encode_config_slice()engine.encode_slice()decode()engine::general_purpose::STANDARD.decode()orprelude::BASE64_STANDARD.decode()decode_config()engine.decode()decode_config_buf()engine.decode_vec()decode_config_slice()engine.decode_slice()The short-lived 0.20 functions were the 0.13 functions with
configreplaced withengine.Padding
If applicable, use the preset engines
engine::STANDARD,engine::STANDARD_NO_PAD,engine::URL_SAFE,or
engine::URL_SAFE_NO_PAD.The
NO_PADones require that padding is absent when decoding, and the others require thatcanonical padding is present .
If you need the < 0.20 behavior that did not care about padding, or want to recreate < 0.20.0's predefined
Configsprecisely, see the following table.
encode_paddingdecode_padding_modev0.20.0Compare Source
Breaking changes
correct padding.
NO_PADconfig now requires that padding be absent when decoding.0.20.0-alpha.1
Breaking changes
Configconcept into theEngineabstraction, allowing the user to pick different encoding / decodingimplementations.
FastPortableengine, so named because it's portable (works onany CPU) and relatively fast.
implementation (#153,
presumably
ConstantTimePortable?) for security-sensitive applications that need side-channel resistance, andCPU-specific SIMD implementations for more speed.
DEFAULT_ENGINE. To use different alphabets or other settings (padding, etc), create your own engine instance.
CharacterSetis nowAlphabet(per the RFC), and allows creating custom alphabets. The corresponding tables thatwere previously code-generated are now built dynamically.
discoverable.
const fn.DecoderReadernow owns its inner reader, and can expose it viainto_inner(). For symmetry,EncoderWritercan dothe same with its writer.
encoded_lenis now public so you can size encode buffers precisely.Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.