From 90625a71d0e8c7844292eaac552c9be4afac82fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Mon, 10 Jun 2024 16:31:01 +0000 Subject: [PATCH] Update base64 to 0.22 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- Cargo.lock | 14 ++++++++++---- core/Cargo.toml | 2 +- discovery/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fa25197..087eab7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -180,6 +180,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "base64ct" version = "1.6.0" @@ -942,7 +948,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322106e6bd0cba2d5ead589ddb8150a13d7c4217cf80d7c4f682ca994ccc6aa9" dependencies = [ - "base64", + "base64 0.21.7", "bytes", "headers-core", "http", @@ -1459,7 +1465,7 @@ name = "librespot-core" version = "0.5.0-dev" dependencies = [ "aes", - "base64", + "base64 0.22.1", "byteorder", "bytes", "data-encoding", @@ -1513,7 +1519,7 @@ name = "librespot-discovery" version = "0.5.0-dev" dependencies = [ "aes", - "base64", + "base64 0.22.1", "bytes", "cfg-if", "ctr", @@ -2457,7 +2463,7 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c333bb734fcdedcea57de1602543590f545f127dc8b533324318fd492c5c70b" dependencies = [ - "base64", + "base64 0.21.7", "rustls-pki-types", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index c9fb2b02..46b8a3f8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,7 +15,7 @@ version = "0.5.0-dev" [dependencies] aes = "0.8" -base64 = "0.21" +base64 = "0.22" byteorder = "1.4" bytes = "1" dns-sd = { version = "0.1", optional = true } diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 345859b1..72732eff 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies] aes = "0.8" -base64 = "0.21" +base64 = "0.22" bytes = "1" cfg-if = "1.0" ctr = "0.9"