Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

jewlexx/spinners-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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

cargo run --example cycle
cargo run --example spin

Made with 💗 by Juliette Cordor