Progressive
A rust library for showing progress of iterators and loops.
Install / Use
/learn @palango/ProgressiveREADME
progressive
A rust library for showing progress of iterators and loops.
Documentation
Usage
To use progressive, add this to your Cargo.toml:
[dependencies]
progressive = "0.1"
And this to your crate root:
extern crate progressive;
Here's a simple example that shows how to wrap an iterator in order to get progress information:
extern crate progressive;
use progressive::progress;
use std::time::Duration;
fn main() {
for _ in progress(0..30) {
// do something expensive here
std::thread::sleep(Duration::from_millis(200));
}
}
For an example run cargo run --example basic
Related Skills
node-connect
341.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.4kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.4kCommit, push, and open a PR

