| Crates.io | kitt_throbbler |
| lib.rs | kitt_throbbler |
| version | 0.1.3 |
| created_at | 2025-09-05 16:24:07.069837+00 |
| updated_at | 2025-09-05 21:22:10.735996+00 |
| description | A Knight Rider style LED animation for terminal output |
| homepage | https://github.com/aovestdipaperino/kitt-throbbler |
| repository | https://github.com/aovestdipaperino/kitt-throbbler |
| max_upload_size | |
| id | 1825770 |
| size | 21,819 |
A simple library for creating a Knight Rider-style throbber animation in the terminal.
use kitt_throbbler::Throbber;
#[tokio::main]
async fn main() {
let throbber = Throbber::new();
throbber.start().await;
}