Skip to content

Commit 1ef0c05

Browse files
authored
deps: bump dependencies as of 2023-08-26 (#1287)
1 parent 11676bb commit 1ef0c05

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Cargo.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ default = ["deploy"]
7575

7676
[dependencies]
7777
anyhow = "1.0.75"
78-
backtrace = "0.3.68"
78+
backtrace = "0.3.69"
7979
cfg-if = "1.0.0"
8080
clap = { version = "4.3.23", features = ["default", "cargo", "wrap_help"] }
8181
concat-string = "1.0.1"
@@ -92,7 +92,7 @@ kstring = { version = "2.0.0", features = ["arc"] }
9292
log = { version = "0.4.20", optional = true }
9393
nvml-wrapper = { version = "0.9.0", optional = true }
9494
once_cell = "1.18.0"
95-
regex = "1.9.3"
95+
regex = "1.9.4"
9696
serde = { version = "=1.0.188 ", features = ["derive"] }
9797
starship-battery = { version = "0.8.2", optional = true }
9898
sysinfo = "=0.29.8"
@@ -107,7 +107,7 @@ unicode-width = "0.1.10"
107107
libc = "0.2.147"
108108

109109
[target.'cfg(target_os = "linux")'.dependencies]
110-
rustix = { version = "0.38.8", features = ["fs", "param", "process"] }
110+
rustix = { version = "0.38.9", features = ["fs", "param", "process"] }
111111

112112
[target.'cfg(target_os = "macos")'.dependencies]
113113
core-foundation = "0.9.3"

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ pub fn panic_hook(panic_info: &PanicInfo<'_>) {
305305
},
306306
};
307307

308-
let stacktrace = format!("{:?}", backtrace::Backtrace::new());
308+
let backtrace = format!("{:?}", backtrace::Backtrace::new());
309309

310310
let _ = disable_raw_mode();
311311
let _ = execute!(
@@ -320,7 +320,7 @@ pub fn panic_hook(panic_info: &PanicInfo<'_>) {
320320
let _ = execute!(
321321
stdout,
322322
Print(format!(
323-
"thread '<unnamed>' panicked at '{msg}', {panic_info}\n\r{stacktrace}",
323+
"thread '<unnamed>' panicked at '{msg}', {panic_info}\n\r{backtrace}",
324324
)),
325325
);
326326
}

0 commit comments

Comments
 (0)