deps: bump dependencies as of 2023-08-26 (#1287)

This commit is contained in:
Clement Tsang
2023-08-26 21:16:43 -04:00
committed by GitHub
parent 11676bb6c1
commit 1ef0c05aa6
3 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -305,7 +305,7 @@ pub fn panic_hook(panic_info: &PanicInfo<'_>) {
},
};
let stacktrace = format!("{:?}", backtrace::Backtrace::new());
let backtrace = format!("{:?}", backtrace::Backtrace::new());
let _ = disable_raw_mode();
let _ = execute!(
@@ -320,7 +320,7 @@ pub fn panic_hook(panic_info: &PanicInfo<'_>) {
let _ = execute!(
stdout,
Print(format!(
"thread '<unnamed>' panicked at '{msg}', {panic_info}\n\r{stacktrace}",
"thread '<unnamed>' panicked at '{msg}', {panic_info}\n\r{backtrace}",
)),
);
}