2022-09-14 12:36:34 +00:00
|
|
|
[package]
|
|
|
|
name = "vento"
|
2023-08-19 22:50:44 +00:00
|
|
|
version = "1.3.0-alpha"
|
2022-09-14 12:36:34 +00:00
|
|
|
edition = "2021"
|
2022-09-20 01:25:34 +00:00
|
|
|
readme = "README.md"
|
2022-09-14 12:36:34 +00:00
|
|
|
|
2022-09-20 01:25:34 +00:00
|
|
|
description = "A CLI inventory for your files"
|
|
|
|
authors = ["Lux Aliaga <they@mint.lgbt>"]
|
2022-11-16 14:52:41 +00:00
|
|
|
repository = "https://git.sr.ht/~nixgoat/vento"
|
2022-09-20 01:25:34 +00:00
|
|
|
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
keywords = ["utility", "file-manager", "inventory"]
|
|
|
|
categories = ["command-line-utilities", "filesystem"]
|
2022-09-25 01:24:31 +00:00
|
|
|
|
|
|
|
build = "build.rs"
|
2022-09-14 12:36:34 +00:00
|
|
|
# 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"
|
2023-08-19 22:50:44 +00:00
|
|
|
fs_extra = "1.3"
|
2022-11-16 14:44:01 +00:00
|
|
|
anyhow = "1.0"
|
2022-09-20 01:25:34 +00:00
|
|
|
size_format = "1.0.2"
|
2022-09-27 02:58:42 +00:00
|
|
|
config = "0.13.1"
|
2023-02-17 05:07:28 +00:00
|
|
|
xz2 = "0.1"
|
|
|
|
tar = "0.4"
|
2022-09-25 01:24:31 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
man = "0.3.0"
|
|
|
|
anyhow = "1.0.65"
|
2022-09-29 01:02:07 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
opt-level = "z"
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|