See Cargo page
```rust use std::{thread, time::Duration}; use spinners_rs::{Spinner, Spinners};
let mut sp = Spinner::new(Spinners::Arrow, "Doing Some Things...").unwrap();
sp.start();
thread::sleep(Duration::from_secs(3)); ```
shell
cargo run --example cycle
shell
cargo run --example spin
Made with 💗 by Juliette Cordor