From 527009d192076edf2ca7fe8d86ea39883f610dee Mon Sep 17 00:00:00 2001 From: Olivier van der Toorn Date: Mon, 9 Sep 2024 13:07:31 +0200 Subject: [PATCH] Update librespot dependencies Spotifyd fails to load encrypted files. This seems to be related to changes on Spotify's end. The librespot v0.4.2 release blacklists a few access points that caused librespot to fail playback anything. This change points the librespot v0.4.2 to address similar issues. --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71a3cd0e..80931373 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,11 +28,11 @@ structopt = "0.3.17" tokio = {version = "1.26.0", features = ["signal", "rt-multi-thread", "process", "io-std"] } tokio-stream = "0.1.7" url = "2.2.2" -librespot-audio = { version = "0.4", default-features = false } -librespot-playback = { version = "0.4", default-features = false } -librespot-core = { version = "0.4" } -librespot-discovery = { version = "0.4" } -librespot-connect = { version = "0.4" } +librespot-audio = { version = "0.4.2", default-features = false } +librespot-playback = { version = "0.4.2", default-features = false } +librespot-core = { version = "0.4.2" } +librespot-discovery = { version = "0.4.2" } +librespot-connect = { version = "0.4.2" } toml = "0.7" color-eyre = "0.6" directories = "5.0.1"