mirror of
https://github.com/librespot-org/librespot.git
synced 2026-04-27 08:15:50 +03:00
[PR #1541] [MERGED] feat: native TLS #1431
Labels
No labels
A-Alsa
SpotifyAPI
Tokio 1.0
audio
bug
can't reproduce
compilation
dependencies
duplicate
enhancement
good first issue
help wanted
high priority
imported
imported
invalid
new api
pull-request
question
reverse engineering
wiki
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/librespot#1431
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/librespot-org/librespot/pull/1541
Author: @roderickvd
Created: 8/15/2025
Status: ✅ Merged
Merged: 8/19/2025
Merged by: @roderickvd
Base:
dev← Head:feat/native-tls📝 Commits (10+)
f09ab81feat(deps): move to native TLS on all platforms6dd9badfix: update apt after dpkg architecture adde7a053aci: refactor workflows with cross-compilation and best practices28562c2fix: vendorize openssl on riscv64gc0b6de6afix: vendorize openssl on riscv64gcc092d23feat: native-tls and rustls-tls features with rustls platform verifierc6cf191fix: native-tls and rustls-tls are mutually exclusive4fd9db1ci: always include one tls backend606f9dcrefactor: TLS feature handling and CI build steps2103965refactor: document TLS backend options and propagate workspace fields📊 Changes
31 files changed (+928 additions, -577 deletions)
View changed files
📝
.devcontainer/Dockerfile(+0 -1)📝
.devcontainer/Dockerfile.alpine(+0 -1)📝
.devcontainer/devcontainer.json(+15 -19)➕
.github/workflows/build.yml(+99 -0)➕
.github/workflows/cross-compile.yml(+78 -0)➕
.github/workflows/quality.yml(+79 -0)➖
.github/workflows/test.yml(+0 -281)📝
CHANGELOG.md(+1 -1)📝
COMPILING.md(+65 -6)📝
Cargo.lock(+190 -22)📝
Cargo.toml(+147 -77)➕
Cross.toml(+12 -0)📝
README.md(+6 -4)📝
audio/Cargo.toml(+15 -9)📝
audio/src/fetch/mod.rs(+4 -6)📝
connect/Cargo.toml(+17 -17)📝
core/Cargo.toml(+44 -32)📝
core/src/http_client.rs(+14 -9)📝
discovery/Cargo.toml(+20 -16)📝
discovery/examples/discovery.rs(+1 -1)...and 11 more files
📄 Description
Maybe we're lucky and the latest Rust ecosystem is allowing us to switch to native TLS easily.
This PR switches from rustls and ring to native TLS on all platforms.
Fixes #1158
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.