Go to file
2022-07-15 21:08:36 +02:00
.github Initial commit 2022-07-15 19:59:22 +02:00
examples Initial commit 2022-07-15 19:59:22 +02:00
src fix: optimized ::new() 2022-07-15 21:08:36 +02:00
.gitignore Initial commit 2022-07-15 19:59:22 +02:00
Cargo.toml Pre-release changes 2022-07-15 20:11:42 +02:00
LICENSE Initial commit 2022-07-15 19:59:22 +02:00
README.md fix: optimized ::new() 2022-07-15 21:08:36 +02:00

spinoff

spinoff is a simple to use library for displaying spinners in the terminal, with plenty of features and options.

Version Downloads License

Usage

use spinoff::Spinners;
use std::thread::sleep;
use std::time::Duration;

let spinner = spinoff::new(Spinners::Dots, "Loading...", "Blue".into()); // Can also be Some("blue") or None
sleep(Duration::from_secs(3));
spinner.success("Done!");

Documentation

  • All documentation can be found on the Docs.rs page.
  • If you want to see all the available Spinner options, check the Spinners enum.

Examples

To run some of the included examples, use:

cargo run --example all_spinners
cargo run --example simple

Contributing

Any contributions to this crate are highly appreciated. If you have any ideas/suggestions/bug fixes, please open an issue or pull request.

License

This crate is licensed under the MIT license.