Files
GarandPLG 6e46e26f7a Rename crate to veil-rs and update Nix scripts
Change package name from veil_rs to veil-rs.
Update Cargo.toml and Cargo.lock accordingly.
Update cargoHash in default.nix for the renamed package.
Comment out postInstall step that renamed the binary.
Rename `args` variable to `_args` in main.rs to silence unused warning.
2026-06-04 12:33:12 +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"