diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c5cf4356..156630da 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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=-Dwarnings +ENV RUSTFLAGS="-D warnings -A renamed-and-removed-lints" RUN apt-get update && \ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cadfd69e..66a430b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ on: env: RUST_BACKTRACE: 1 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings -A renamed-and-removed-lints # The layering here is as follows: # 1. code formatting