mirror of
https://github.com/ricoriedel/wipe.git
synced 2024-11-04 15:16:40 +00:00
19 lines
394 B
TOML
19 lines
394 B
TOML
# Don't forget to update PKGBUILD
|
|
|
|
[package]
|
|
name = "wipe"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Wipe your terminal with a random animation."
|
|
repository = "https://github.com/ricoriedel/wipe"
|
|
authors = ["Rico Riedel"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "3.1", features = ["derive"]}
|
|
crossterm = "0.23"
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
mockall = "0.11" |