Files
veil-rs/src/main.rs
T
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

9 lines
123 B
Rust

use std::io::Result;
use veil_rs::cli::Cli;
fn main() -> Result<()> {
let _args: Cli = Cli::get_args();
Ok(())
}