mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Revert lint exception by setting minor version of protobuf (#1339)
This commit is contained in:
parent
338d8b90b2
commit
22a8850fe9
8 changed files with 497 additions and 699 deletions
|
@ -6,7 +6,7 @@ FROM rust:${rust_version}-${debian_version}
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
||||||
ENV RUST_BACKTRACE=1
|
ENV RUST_BACKTRACE=1
|
||||||
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints"
|
ENV RUSTFLAGS="-D warnings"
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
|
|
@ -5,7 +5,7 @@ FROM rust:${rust_version}-${alpine_version}
|
||||||
|
|
||||||
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
||||||
ENV RUST_BACKTRACE=1
|
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 \
|
RUN apk add --no-cache \
|
||||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -37,7 +37,7 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
RUSTFLAGS: -D warnings -A renamed-and-removed-lints
|
RUSTFLAGS: -D warnings
|
||||||
|
|
||||||
# The layering here is as follows:
|
# The layering here is as follows:
|
||||||
# 1. code formatting
|
# 1. code formatting
|
||||||
|
|
1182
Cargo.lock
generated
1182
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -12,7 +12,7 @@ edition = "2021"
|
||||||
form_urlencoded = "1.0"
|
form_urlencoded = "1.0"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
protobuf = "3"
|
protobuf = "3.5"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
|
@ -45,7 +45,7 @@ once_cell = "1"
|
||||||
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
||||||
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
|
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
|
||||||
priority-queue = "2.0"
|
priority-queue = "2.0"
|
||||||
protobuf = "3"
|
protobuf = "3.5"
|
||||||
quick-xml = { version = "0.36.1", features = ["serialize"] }
|
quick-xml = { version = "0.36.1", features = ["serialize"] }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
rsa = "0.9.2"
|
rsa = "0.9.2"
|
||||||
|
|
|
@ -13,7 +13,7 @@ async-trait = "0.1"
|
||||||
byteorder = "1"
|
byteorder = "1"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
protobuf = "3"
|
protobuf = "3.5"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
uuid = { version = "1", default-features = false }
|
uuid = { version = "1", default-features = false }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
|
@ -10,7 +10,7 @@ repository = "https://github.com/librespot-org/librespot"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
protobuf = "3"
|
protobuf = "3.5"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
protobuf-codegen = "3"
|
protobuf-codegen = "3"
|
||||||
|
|
Loading…
Reference in a new issue