mirror of
https://git.sr.ht/~nixgoat/vento
synced 2024-11-16 03:53:04 +00:00
Lux Aliaga
a841ba974c
This has been an idea that has been on my mind for a bit. My argument parser was very complex and hard to maintain. Therefore, I've decided to refactor them using the Clap crate, which should make this more straight forward.
39 lines
815 B
TOML
39 lines
815 B
TOML
[package]
|
|
name = "vento"
|
|
version = "1.3.0-alpha"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
|
|
description = "A CLI inventory for your files"
|
|
authors = ["Lux Aliaga <lux@nixgoat.me>"]
|
|
repository = "https://git.sr.ht/~nixgoat/vento"
|
|
|
|
license = "GPL-3.0-or-later"
|
|
keywords = ["utility", "file-manager", "inventory"]
|
|
categories = ["command-line-utilities", "filesystem"]
|
|
|
|
build = "build.rs"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "5.0"
|
|
colored = "2"
|
|
fs_extra = "1.3"
|
|
anyhow = "1.0"
|
|
size_format = "1.0.2"
|
|
config = "0.13"
|
|
xz2 = "0.1"
|
|
tar = "0.4"
|
|
clap = { version = "4.3.23", features = ["derive"] }
|
|
|
|
[build-dependencies]
|
|
man = "0.3.0"
|
|
anyhow = "1.0.65"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|