vaporise/Cargo.toml

25 lines
503 B
TOML
Raw Normal View History

2024-03-13 19:27:25 +00:00
[package]
name = "vaporise"
2024-05-26 16:03:31 +01:00
version = "0.5.0"
2024-03-13 19:27:25 +00:00
edition = "2021"
2024-03-13 20:23:48 +00:00
authors = ["Muhammad Nauman Raza <devraza@skiff.com>"]
description = "A simple, featureful and blazingly fast memory-safe alternative to 'rm' written in Rust."
readme = "README.md"
license = "MIT"
2024-03-13 19:27:25 +00:00
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
2024-03-13 19:27:25 +00:00
[dependencies]
anyhow = "1.0.86"
2024-04-07 22:22:09 +01:00
clap = { version = "4.5.4", features = ["derive"] }
owo-colors = "4.0.0"
2024-03-13 19:27:25 +00:00
[[bin]]
name = "vpr"
path = "src/main.rs"