[feat] enhance error handling, CLI options, and progress display; add --continue-on-error flag and improve maintainability

This commit is contained in:
2025-08-12 02:43:20 +02:00
parent d531ac0b96
commit ee67b56d6b
5 changed files with 420 additions and 665 deletions

View File

@@ -458,7 +458,9 @@ fn info_style() -> ProgressStyle {
fn total_style() -> ProgressStyle {
// Bottom total bar with elapsed time
ProgressStyle::with_template("Total [{bar:28=> }] {pos}/{len} [{elapsed_precise}]").unwrap()
ProgressStyle::with_template("Total [{bar:28}] {pos}/{len} [{elapsed_precise}]")
.unwrap()
.progress_chars("=> ")
}
#[derive(Debug, Clone, Copy)]