Spinners for Rust

Cargo version License Docs Downloads

82 fun and easy to use, lightweight, spinners for Rust, with minimal overhead.

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...").unwrap();

sp.start();

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

Example

shell cargo run --example cycle

shell cargo run --example spin

Made with 💗 by Juliette Cordor