Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ remain = "0.2"
serde = "1.0"
serde_json = "1.0"
sha1_smol = { version = "1.0", features = ["std"] }
tempfile = "3.25"
tempfile = "3.26"
termcolor = "1.4"
toml = "0.9"

Expand All @@ -46,8 +46,8 @@ rustls = { version = "0.23", default-features = false, features = [
rustsec = "0.32"
similar-asserts = "1.7"
snapbox = "1.0"
strum = "0.27"
strum_macros = "0.27"
strum = "0.28"
strum_macros = "0.28"
testing = { path = "testing" }
tokio = "1.49"

Expand Down
2 changes: 1 addition & 1 deletion ci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ elaborate = "0.2"
regex = "1.12"
serde_json = "1.0"
similar-asserts = "1.7"
tempfile = "3.25"
tempfile = "3.26"
toml_edit = "0.24"
walkdir = "2.5"

Expand Down
2 changes: 1 addition & 1 deletion examples/rustsec_advisories.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ fn display_expected_readme_contents(outcomes: &[Outcome<Reason>]) {
println!(" - {error} do not build");
println!(" - {leaf} are existent, unarchived leaves");
println!(" - {recently_updated} were updated within the past 365 days");
println!(" - {other} were not identified for other reasons",);
println!(" - {other} were not identified for other reasons");
}

fn advisory_url(advisory: &Advisory) -> String {
Expand Down
16 changes: 8 additions & 8 deletions mock_github/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Progress {
fn draw(&mut self, msg: &str) -> Result<()> {
let width_n = self.width_n;
let percent = (self.i * 100).checked_div(self.n).unwrap_or(100);
let formatted_msg = format!("{:>width_n$}/{} ({percent}%) {msg}", self.i, self.n,);
let formatted_msg = format!("{:>width_n$}/{} ({percent}%) {msg}", self.i, self.n);
let width_to_overwrite = self.width_prev.saturating_sub(formatted_msg.len());
eprint!("{formatted_msg}{:width_to_overwrite$}\r", "");
<_ as Flush>::flush(&mut std::io::stderr()).with_context(|| "failed to flush stderr")?;
Expand Down
2 changes: 1 addition & 1 deletion testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ elaborate = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
snapbox = "1.0"
tempfile = "3.25"
tempfile = "3.26"
toml = "0.9"

[lints]
Expand Down