File tree 3 files changed +5
-3
lines changed 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111
111
- name : Install Rust
112
112
uses : dtolnay/rust-toolchain@stable
113
113
with :
114
- toolchain : " 1.83.0 " # STABLE
114
+ toolchain : " 1.84 " # STABLE
115
115
- uses : Swatinem/rust-cache@v2
116
116
- name : Check documentation
117
117
env :
@@ -126,7 +126,7 @@ jobs:
126
126
- name : Install Rust
127
127
uses : dtolnay/rust-toolchain@stable
128
128
with :
129
- toolchain : " 1.83.0 " # STABLE
129
+ toolchain : " 1.84 " # STABLE
130
130
components : rustfmt
131
131
- uses : Swatinem/rust-cache@v2
132
132
- name : Check formatting
@@ -142,7 +142,7 @@ jobs:
142
142
- name : Install Rust
143
143
uses : dtolnay/rust-toolchain@stable
144
144
with :
145
- toolchain : " 1.83.0 " # STABLE
145
+ toolchain : " 1.84 " # STABLE
146
146
components : clippy
147
147
- uses : Swatinem/rust-cache@v2
148
148
- name : Install SARIF tools
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ pub use std::eprintln;
20
20
#[ macro_export]
21
21
macro_rules! debug {
22
22
( $( $arg: tt) * ) => ( {
23
+ #![ allow( unexpected_cfgs) ] // HACK: until we upgrade the minimum anstream
23
24
$crate:: eprint!( "[{:>w$}] \t " , module_path!( ) , w = 28 ) ;
24
25
$crate:: eprintln!( $( $arg) * ) ;
25
26
} )
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ impl Runner {
39
39
bins : & crate :: BinRegistry ,
40
40
substitutions : & snapbox:: Redactions ,
41
41
) {
42
+ #![ allow( unexpected_cfgs) ] // HACK: until we upgrade the minimum anstream
42
43
let palette = snapbox:: report:: Palette :: color ( ) ;
43
44
44
45
if self . cases . is_empty ( ) {
You can’t perform that action at this time.
0 commit comments