wipe/Cargo.toml

19 lines
394 B
TOML
Raw Normal View History

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