21 lines
560 B
TOML
21 lines
560 B
TOML
[package]
|
|
name = "spinoff"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
author = "ad4m"
|
|
description = "🔨 Simple to use Rust library for displaying spinners in the terminal."
|
|
license = "MIT"
|
|
homepage = "https://github.com/ad4mx/spinoff"
|
|
repository = "https://github.com/ad4mx/spinoff"
|
|
readme = "README.md"
|
|
keywords = ["spinner", "spin", "loader", "cli", "terminal"]
|
|
categories = ["command-line-interface"]
|
|
include = ["src/**/*", "README.md"]
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
maplit = "1.0.2"
|
|
yansi = "0.5.1"
|
|
strum = { version = "0.24.0", features = ["derive"] }
|
|
|