Spinners for Rust

Cargo version License Docs Downloads

82 fun and easy to use, lightweight, spinners for Rust, with minimal overhead, all the way from simple dots, to fun emoji based "spinners".

Demo Gif

Install

See Cargo page

Usage

```rust use std::{thread, time::Duration}; use spinners_rs::{Spinner, Spinners};

let mut sp = Spinner::new(Spinners::Arrow, "Doing Some Things...");

sp.start();

thread::sleep(Duration::from_secs(3)); ```

Example

shell cargo run --example cycle

shell cargo run --example spin

Made with 💗 by Juliette Cordor