Skip to content

Commit ca6d7cb

Browse files
committed
chore: Hack around an old anstream
1 parent 80985f9 commit ca6d7cb

File tree

1 file changed

+1
-0
lines changed
  • crates/snapbox-macros/src

1 file changed

+1
-0
lines changed

crates/snapbox-macros/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pub use std::eprintln;
2020
#[macro_export]
2121
macro_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
})

0 commit comments

Comments
 (0)