From 349d02ced017aaf11104077dd1b6e7cfd9e17878 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Sat, 4 May 2024 17:16:40 +0200 Subject: [PATCH] Pin `base64` to the fixed patch version (#12762) Followup to #12757 Always ensure that the `Cargo.toml` specifies the full minimum version required to have the correct behavior or used features. Otherwise a missing semver specifier is equal to `0` and could downgrade. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7fbc95a239..9cf4fcf947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ members = [ alphanumeric-sort = "1.5" ansi-str = "0.8" anyhow = "1.0.82" -base64 = "0.22" +base64 = "0.22.1" bracoxide = "0.1.2" brotli = "5.0" byteorder = "1.5"