mirror of
https://github.com/ricoriedel/wipe.git
synced 2024-11-04 15:16:40 +00:00
21 lines
427 B
TOML
21 lines
427 B
TOML
# Don't forget to update
|
|
# - dist/arch/PKGBUILD
|
|
# - dist/deb/build
|
|
|
|
[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" |