82 fun and easy to use, lightweight, spinners for Rust, with minimal overhead, all the way from simple dots, to fun emoji based "spinners".
See Cargo page
```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)); ```
shell
cargo run --example cycle
shell
cargo run --example spin
Made with 💗 by Juliette Cordor