Files
veil-rs/Cargo.toml
T
GarandPLG c78ce27dba Add subcommand support with colored help banner
Enable `clap` color feature, introduce subcommands (Sync, Add, Rm, Ls)
and a
custom before‑help banner, and update `main` to return a `Result`.
2026-06-03 16:35:31 +02:00

23 lines
634 B
TOML

[package]
name = "veil_rs"
version = "0.1.0"
edition = "2024"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[dependencies]
clap = { version = "4.6.1", features = ["derive", "color"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.33"
dirs = "6.0.0" # XDG paths cross-platform
tera = "1.20.1" # templating dla tauri.conf.json
rust-embed = "8.11.0" # embed template w binarce
anyhow = "1.0.102" # error handling
indicatif = "0.18.4" # progress bary podczas buildu
log = "0.4.31"
simplelog = "0.12.2"