wipe/Cargo.toml

21 lines
427 B
TOML
Raw Normal View History

2022-04-15 12:13:36 +00:00
# Don't forget to update
# - dist/arch/PKGBUILD
# - dist/deb/build
2022-04-10 07:25:02 +00:00
2022-04-02 15:05:49 +00:00
[package]
name = "wipe"
2022-04-15 12:31:30 +00:00
version = "1.0.1"
2022-04-02 15:05:49 +00:00
edition = "2021"
2022-04-02 15:15:03 +00:00
license = "MIT"
description = "Wipe your terminal with a random animation."
repository = "https://github.com/ricoriedel/wipe"
2022-04-09 15:19:03 +00:00
authors = ["Rico Riedel"]
2022-04-02 15:05:49 +00:00
[dependencies]
2022-04-03 14:53:21 +00:00
anyhow = "1.0"
2022-04-02 15:19:48 +00:00
clap = { version = "3.1", features = ["derive"]}
crossterm = "0.23"
2022-04-09 14:07:49 +00:00
rand = "0.8"
2022-04-11 18:27:38 +00:00
[dev-dependencies]
2022-04-09 14:07:49 +00:00
mockall = "0.11"