kitt_throbbler 0.1.2

A Knight Rider style LED animation for terminal output
Documentation
  • Coverage
  • 92.31%
    12 out of 13 items documented5 out of 7 items with examples
  • Size
  • Source code size: 21.28 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.95 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 23s Average build duration of successful builds.
  • all releases: 25s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • aovestdipaperino

KITT Throbbler

A simple library for creating a Knight Rider-style throbber animation in the terminal.

Usage

use kitt_throbbler::Throbber;

#[tokio::main]
async fn main() {
    let throbber = Throbber::new();
    throbber.start().await;
}