[PR #1255] [MERGED] Update/dependencies #1304

Closed
opened 2026-02-27 20:01:56 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/librespot-org/librespot/pull/1255
Author: @yubiuser
Created: 2/23/2024
Status: Merged
Merged: 3/31/2024
Merged by: @roderickvd

Base: devHead: update/dependencies


📝 Commits (10+)

📊 Changes

11 files changed (+648 additions, -463 deletions)

View changed files

📝 .github/workflows/test.yml (+3 -3)
📝 CHANGELOG.md (+1 -1)
📝 Cargo.lock (+623 -435)
📝 Cargo.toml (+2 -2)
📝 core/Cargo.toml (+2 -2)
📝 core/src/http_client.rs (+2 -4)
📝 core/src/spclient.rs (+3 -4)
📝 discovery/Cargo.toml (+1 -1)
📝 playback/Cargo.toml (+7 -7)
📝 playback/src/audio_backend/gstreamer.rs (+2 -2)
📝 src/main.rs (+2 -2)

📄 Description

Updates the following dependencies

librespot: /librespot/Cargo.toml
	env_logger matches 0.10.2;	latest is 0.11.2
	sysinfo matches 0.29.11;	latest is 0.30.5

librespot-audio: /librespot/audio/Cargo.toml
	hyper matches 0.14.28;	latest is 1.2.0

librespot-core: /librespot/core/Cargo.toml
	http matches 0.2.11;	latest is 1.0.0
	hyper matches 0.14.28;	latest is 1.2.0
	hyper-rustls matches 0.24.2;	latest is 0.26.0
	sysinfo matches 0.29.11;	latest is 0.30.5
	env_logger matches 0.10.2;	latest is 0.11.2

librespot-playback: /librespot/playback/Cargo.toml
	alsa matches 0.8.1;	latest is 0.9.0
	glib matches 0.18.5;	latest is 0.19.2
	gstreamer matches 0.21.3;	latest is 0.22.1
	gstreamer-app matches 0.21.2;	latest is 0.22.0
	gstreamer-audio matches 0.21.3;	latest is 0.22.0
	sdl2 matches 0.35.2;	latest is 0.36.0

librespot-discovery: /librespot/discovery/Cargo.toml
	hyper matches 0.14.28;	latest is 1.2.0
	libmdns matches 0.7.5;	latest is 0.8.0

Needed to bump MSRV to 1.71.0


The following dependencies were not upgraded


librespot-audio: /librespot/audio/Cargo.toml
	hyper matches 0.14.28;	latest is 1.2.0

librespot-core: /librespot/core/Cargo.toml
	http matches 0.2.11;	latest is 1.0.0
	hyper matches 0.14.28;	latest is 1.2.0
	hyper-rustls matches 0.24.2;	latest is 0.26.0

librespot-discovery: /librespot/discovery/Cargo.toml
	hyper matches 0.14.28;	latest is 1.2.0

hyper had some major restructuring, requiering many changes to the code which I did not feel capable of.
See https://hyper.rs/guides/1/upgrading/
This also affects hyper-rustls and http


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/librespot-org/librespot/pull/1255 **Author:** [@yubiuser](https://github.com/yubiuser) **Created:** 2/23/2024 **Status:** ✅ Merged **Merged:** 3/31/2024 **Merged by:** [@roderickvd](https://github.com/roderickvd) **Base:** `dev` ← **Head:** `update/dependencies` --- ### 📝 Commits (10+) - [`6532264`](https://github.com/librespot-org/librespot/commit/6532264b81762f21d546e1af144e07df02ab3050) Update env_logger to 11.2 - [`979d9d0`](https://github.com/librespot-org/librespot/commit/979d9d0aa061968071df535b6e9627ca9860509c) Update sysinfo to 0.30.5 - [`d8e7f4f`](https://github.com/librespot-org/librespot/commit/d8e7f4f618812f27956cc34c5ad8f17ccd8d8ee6) Update MSRV to 1.71.0 - [`c28cf29`](https://github.com/librespot-org/librespot/commit/c28cf298585e3e494bc224b1c7805a4cffb606f0) Update libmdns to 0.8 - [`caf8029`](https://github.com/librespot-org/librespot/commit/caf8029953ced7e2e833d1e8f5c7d677b021b831) Update alsa to 0.9.0 - [`88e9a9c`](https://github.com/librespot-org/librespot/commit/88e9a9cc1e10de46eb89ff68a47d98d609934763) Update glib to 0.19.2 - [`4757509`](https://github.com/librespot-org/librespot/commit/47575092dcb3b06cb4a1be6f04f59b52aaf4e6ee) Update sdl2 to 0.36 - [`856bd5e`](https://github.com/librespot-org/librespot/commit/856bd5e7504dcd0f9c4cbbfbd14563e39a74e0b5) Update gstreamer to 0.22 - [`fb264a7`](https://github.com/librespot-org/librespot/commit/fb264a7b71adbe07f6e845ae8303f449f6644cb4) Update zerocopy to 0.7.32 - [`9429258`](https://github.com/librespot-org/librespot/commit/942925862d15e5c851a70dc19b48efaa6001f5ae) Update Cargo.lock ### 📊 Changes **11 files changed** (+648 additions, -463 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+3 -3) 📝 `CHANGELOG.md` (+1 -1) 📝 `Cargo.lock` (+623 -435) 📝 `Cargo.toml` (+2 -2) 📝 `core/Cargo.toml` (+2 -2) 📝 `core/src/http_client.rs` (+2 -4) 📝 `core/src/spclient.rs` (+3 -4) 📝 `discovery/Cargo.toml` (+1 -1) 📝 `playback/Cargo.toml` (+7 -7) 📝 `playback/src/audio_backend/gstreamer.rs` (+2 -2) 📝 `src/main.rs` (+2 -2) </details> ### 📄 Description Updates the following dependencies ``` librespot: /librespot/Cargo.toml env_logger matches 0.10.2; latest is 0.11.2 sysinfo matches 0.29.11; latest is 0.30.5 librespot-audio: /librespot/audio/Cargo.toml hyper matches 0.14.28; latest is 1.2.0 librespot-core: /librespot/core/Cargo.toml http matches 0.2.11; latest is 1.0.0 hyper matches 0.14.28; latest is 1.2.0 hyper-rustls matches 0.24.2; latest is 0.26.0 sysinfo matches 0.29.11; latest is 0.30.5 env_logger matches 0.10.2; latest is 0.11.2 librespot-playback: /librespot/playback/Cargo.toml alsa matches 0.8.1; latest is 0.9.0 glib matches 0.18.5; latest is 0.19.2 gstreamer matches 0.21.3; latest is 0.22.1 gstreamer-app matches 0.21.2; latest is 0.22.0 gstreamer-audio matches 0.21.3; latest is 0.22.0 sdl2 matches 0.35.2; latest is 0.36.0 librespot-discovery: /librespot/discovery/Cargo.toml hyper matches 0.14.28; latest is 1.2.0 libmdns matches 0.7.5; latest is 0.8.0 ``` Needed to bump MSRV to 1.71.0 ___ The following dependencies were not upgraded ``` librespot-audio: /librespot/audio/Cargo.toml hyper matches 0.14.28; latest is 1.2.0 librespot-core: /librespot/core/Cargo.toml http matches 0.2.11; latest is 1.0.0 hyper matches 0.14.28; latest is 1.2.0 hyper-rustls matches 0.24.2; latest is 0.26.0 librespot-discovery: /librespot/discovery/Cargo.toml hyper matches 0.14.28; latest is 1.2.0 ``` `hyper` had some major restructuring, requiering many changes to the code which I did not feel capable of. See https://hyper.rs/guides/1/upgrading/ This also affects `hyper-rustls` and `http` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:01:56 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/librespot#1304
No description provided.