spinoff/Cargo.toml

21 lines
562 B
TOML
Raw Normal View History

2022-07-15 17:59:22 +00:00
[package]
name = "spinoff"
2022-07-17 12:24:43 +00:00
version = "0.2.0"
2022-07-15 17:59:22 +00:00
edition = "2021"
2022-07-16 23:33:16 +00:00
authors = ["ad4m"]
2022-07-15 17:59:22 +00:00
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"
2022-07-15 18:11:42 +00:00
keywords = ["spinner", "spin", "loader", "cli", "terminal"]
2022-07-15 17:59:22 +00:00
categories = ["command-line-interface"]
include = ["src/**/*", "README.md"]
[dependencies]
maplit = "1.0.2"
yansi = "0.5.1"
strum = { version = "0.24.0", features = ["derive"] }
2022-07-16 23:33:16 +00:00
once_cell = "1.13.0"
2022-07-15 17:59:22 +00:00