Skip to content

Commit 22a8850

Browse files
authored
Revert lint exception by setting minor version of protobuf (#1339)
1 parent 338d8b9 commit 22a8850

8 files changed

Lines changed: 495 additions & 697 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM rust:${rust_version}-${debian_version}
66
ARG DEBIAN_FRONTEND=noninteractive
77
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
88
ENV RUST_BACKTRACE=1
9-
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints"
9+
ENV RUSTFLAGS="-D warnings"
1010

1111

1212
RUN apt-get update && \

.devcontainer/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM rust:${rust_version}-${alpine_version}
55

66
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
77
ENV RUST_BACKTRACE=1
8-
ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints -C target-feature=-crt-static"
8+
ENV RUSTFLAGS="-D warnings -C target-feature=-crt-static"
99

1010

1111
RUN apk add --no-cache \

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737

3838
env:
3939
RUST_BACKTRACE: 1
40-
RUSTFLAGS: -D warnings -A renamed-and-removed-lints
40+
RUSTFLAGS: -D warnings
4141

4242
# The layering here is as follows:
4343
# 1. code formatting

0 commit comments

Comments
 (0)