1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 01:39:28 +02:00

Revert lint exception by setting minor version of protobuf (#1339)

This commit is contained in:
yubiuser 2024-09-16 19:42:55 +02:00 committed by GitHub
parent 338d8b90b2
commit 22a8850fe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 497 additions and 699 deletions

View file

@ -6,7 +6,7 @@ FROM rust:${rust_version}-${debian_version}
ARG DEBIAN_FRONTEND=noninteractive
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
ENV RUST_BACKTRACE=1
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints"
ENV RUSTFLAGS="-D warnings"
RUN apt-get update && \

View file

@ -5,7 +5,7 @@ FROM rust:${rust_version}-${alpine_version}
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
ENV RUST_BACKTRACE=1
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints -C target-feature=-crt-static"
ENV RUSTFLAGS="-D warnings -C target-feature=-crt-static"
RUN apk add --no-cache \