librespot: add native-tls feature (required by librespot-oauth)

oauth2 crate gates TLS backends behind features; without native-tls,
librespot-oauth fails to compile with compile_error!. The default
features include native-tls, but we use --no-default-features for
minimal build.
This commit is contained in:
2026-07-01 05:52:07 -07:00
parent e5b52fa56f
commit 32b9189f2f
+1 -1
View File
@@ -19,7 +19,7 @@ WORKDIR /src
# Lower = less memory pressure, slower build. Higher = OOM risk.
RUN cargo build --release --jobs 2 \
--no-default-features \
--features="pulseaudio-backend"
--features="pulseaudio-backend,native-tls"
FROM debian:bookworm-slim