File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111111 - name : Install Rust
112112 uses : dtolnay/rust-toolchain@stable
113113 with :
114- toolchain : " 1.83.0 " # STABLE
114+ toolchain : " 1.84 " # STABLE
115115 - uses : Swatinem/rust-cache@v2
116116 - name : Check documentation
117117 env :
@@ -126,7 +126,7 @@ jobs:
126126 - name : Install Rust
127127 uses : dtolnay/rust-toolchain@stable
128128 with :
129- toolchain : " 1.83.0 " # STABLE
129+ toolchain : " 1.84 " # STABLE
130130 components : rustfmt
131131 - uses : Swatinem/rust-cache@v2
132132 - name : Check formatting
@@ -142,7 +142,7 @@ jobs:
142142 - name : Install Rust
143143 uses : dtolnay/rust-toolchain@stable
144144 with :
145- toolchain : " 1.83.0 " # STABLE
145+ toolchain : " 1.84 " # STABLE
146146 components : clippy
147147 - uses : Swatinem/rust-cache@v2
148148 - name : Install SARIF tools
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ pub use std::eprintln;
2020#[ macro_export]
2121macro_rules! debug {
2222 ( $( $arg: tt) * ) => ( {
23+ #![ allow( unexpected_cfgs) ] // HACK: until we upgrade the minimum anstream
2324 $crate:: eprint!( "[{:>w$}] \t " , module_path!( ) , w = 28 ) ;
2425 $crate:: eprintln!( $( $arg) * ) ;
2526 } )
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ impl Runner {
3939 bins : & crate :: BinRegistry ,
4040 substitutions : & snapbox:: Redactions ,
4141 ) {
42+ #![ allow( unexpected_cfgs) ] // HACK: until we upgrade the minimum anstream
4243 let palette = snapbox:: report:: Palette :: color ( ) ;
4344
4445 if self . cases . is_empty ( ) {
You can’t perform that action at this time.
0 commit comments