Rust 1.88.0 (#85)

* Rust 1.88.0

* nix flake update

* cargo upgrade

* lint

all `uninlined_format_args` related
@see https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
This commit is contained in:
Jens Krause
2025-06-28 11:39:22 +02:00
committed by GitHub
parent 93a3cde396
commit bfa40fd8f1
9 changed files with 31 additions and 31 deletions

View File

@@ -319,7 +319,7 @@ fn human_days_diff(a: &OffsetDateTime, b: &OffsetDateTime) -> String {
match days_diff {
0 => "today".to_owned(),
1 => "tomorrow".to_owned(),
n => format!("+{}days", n),
n => format!("+{n}days"),
}
}