Skip to content

Commit 25731b1

Browse files
konkersCQ Bot Account
authored and
CQ Bot Account
committed
bazel: Treat Rust warnings as errors
Additionally fix outstanding warnings. Bug: https://pwbug.dev/329685244 Change-Id: I506d643374552a12f0224dbdb8c779b5d9d03af4 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/196436 Reviewed-by: Ted Pudlik <tpudlik@google.com> Commit-Queue: Erik Gilling <konkers@google.com>
1 parent ae355bd commit 25731b1

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

pw_format/rust/pw_format_test_macros_test.rs

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ pub enum PrintfTestGeneratorOps {
4242

4343
#[cfg(test)]
4444
mod tests {
45-
use pw_format::macros::IntegerDisplayType;
4645
use pw_format_test_macros::{
4746
char_sub_core_fmt_generator_test_macro, char_sub_printf_generator_test_macro,
4847
core_fmt_generator_test_macro, generator_test_macro,

pw_stream/rust/pw_stream/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ pub(crate) mod test_utils {
182182
mod tests {
183183
use core::cmp::min;
184184

185-
use pw_status::Error;
186-
187185
use super::test_utils::*;
188186
use super::*;
189187

pw_toolchain/rust/defs.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ EXTRA_TARGETS = [
6565
CHANNELS = [
6666
{
6767
"name": "nightly",
68-
"extra_rustc_flags": [],
68+
"extra_rustc_flags": ["-Dwarnings"],
6969
"target_settings": ["@rules_rust//rust/toolchain/channel:nightly"],
7070
},
7171
{
@@ -74,7 +74,7 @@ CHANNELS = [
7474
# disable experimental features with the exception of `proc_macro_span`
7575
# because the `proc-marcro2` automatically detects the toolchain
7676
# as nightly and dynamically uses this feature.
77-
"extra_rustc_flags": ["-Zallow-features=proc_macro_span"],
77+
"extra_rustc_flags": ["-Dwarnings", "-Zallow-features=proc_macro_span"],
7878
"target_settings": ["@rules_rust//rust/toolchain/channel:stable"],
7979
},
8080
]

0 commit comments

Comments
 (0)