chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
use std::thread;
use std::time::Duration;
use indicatif::{ProgressBar, ProgressFinish};
fn main() {
let mut spinner: Option<ProgressBar> = None;
for i in 0..3 {
let new_spinner = ProgressBar::new_spinner()
.with_message(format!("doing stuff {}", i))
.with_finish(ProgressFinish::AndLeave);
new_spinner.enable_steady_tick(Duration::from_millis(10));
thread::sleep(Duration::from_millis(500));
println!("\n\nreplace {}\n\n", i);
if let Some(t) = spinner.replace(new_spinner) { t.finish() }
}
}