Spinoff
💫 Easy to use, robust Rust library for displaying spinners in the terminal
Install / Use
/learn @ad4mx/SpinoffREADME
spinoff
an easy to use, robust library for displaying spinners in the terminal

🔨 Install
Add as a dependency to your Cargo.toml:
[dependencies]
spinoff = "0.8.0"
⚡ Usage
use spinoff::{Spinner, spinners, Color};
use std::thread::sleep;
use std::time::Duration;
let mut spinner = Spinner::new(spinners::Dots, "Loading...", Color::Blue);
sleep(Duration::from_secs(3));
spinner.success("Done!");
Update a spinner
use spinoff::{Spinner, spinners, Color};
use std::thread::sleep;
use std::time::Duration;
let mut spinner = Spinner::new(spinners::Aesthetic, "Loading...", Color::Red);
sleep(Duration::from_secs(3));
spinner.update(spinners::Dots2, "Retrying...", None);
sleep(Duration::from_secs(3));
spinner.stop()
Specify an output stream
use spinoff::{Spinner, spinners, Color, Streams};
use std::thread::sleep;
use std::time::Duration;
let mut spinner = Spinner::new_with_stream(spinners::Line, "Loading...", Color::Yellow, Streams::Stderr);
sleep(Duration::from_secs(3));
spinner.stop_and_persist("📜", "Task done.");
💫 Spinners
spinoff includes over 80+ spinner variants out of the box.
All spinner variants are treated as features that can be enabled or disabled. By default, all of them are enabled for ease of use.
To disable/enable variants, you will have to edit your cargo.toml file:
[dependencies]
spinoff = { version = "0.8.0", features = ["dots", "arc", "line"] }
Any suggestions for new spinner variants are welcome.
Creating your own spinner
You can create your own spinner using the spinner! macro:
use spinoff::*;
use std::thread::sleep;
use std::time::Duration;
let frames = spinner!([">", ">>", ">>>"], 100);
let mut sp = Spinner::new(frames, "Hello World!", None);
sleep(Duration::from_millis(800));
sp.stop();
Multiline messages
spinoff doesn't support spinners with multiline text out of the box. If you want to use it in your project, please look at #27.
❗Note for Windows Users
For colors to work properly, you need to add a few extra lines to your code:
use colored::control
control::set_virtual_terminal(true).unwrap();
📖 Documentation
- All relevant documentation can be found on the Docs.rs page.
- If you want to see all the available
spinneroptions, refer to thespinnermodule.
⚙ Examples
cargo run --example simple
cargo run --example stream
cargo run --example stop_and_persist
Other examples can be found in the documentation.
🚧 Contributing
Any contributions to this crate are highly appreciated. If you have any ideas/suggestions/bug fixes, please open an issue or a pull request. If you like the project, star this project on GitHub.
📑 License
This crate is licensed under the MIT license.
Related Skills
node-connect
352.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
111.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
352.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
352.5kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
