mirror of
https://git.sr.ht/~nixgoat/vento
synced 2024-11-16 03:53:04 +00:00
Lux Aliaga
13e28e445c
I've backtracked from using Clap and instead will keep using my own custom command parser. I'll be using the man crate instead. These manpages have the new syntax which I'll implement in the following commits. This also uses cargo-make to install the manpages because I don't want the manpages being replaced everytime I rebuild.
28 lines
636 B
TOML
28 lines
636 B
TOML
[package]
|
|
name = "vento"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
|
|
description = "A CLI inventory for your files"
|
|
authors = ["Lux Aliaga <they@mint.lgbt>"]
|
|
repository = "https://codeberg.org/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 = "4.0.0"
|
|
colored = "2.0.0"
|
|
fs_extra = "1.2.0"
|
|
anyhow = "1.0.65"
|
|
size_format = "1.0.2"
|
|
|
|
[build-dependencies]
|
|
man = "0.3.0"
|
|
anyhow = "1.0.65"
|