spinoff/Cargo.toml

21 lines
562 B
TOML
Raw Normal View History

2022-07-15 12:59:22 -05:00
[package]
name = "spinoff"
2022-07-17 07:24:43 -05:00
version = "0.2.0"
2022-07-15 12:59:22 -05:00
edition = "2021"
2022-07-16 18:33:16 -05:00
authors = ["ad4m"]
2022-07-15 12:59:22 -05: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 13:11:42 -05:00
keywords = ["spinner", "spin", "loader", "cli", "terminal"]
2022-07-15 12:59:22 -05: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 18:33:16 -05:00
once_cell = "1.13.0"
2022-07-15 12:59:22 -05:00