Welcome back to the series. This post is going to be a short one focused on setting up the Rust application and the command-line interface.

use clap::{Parser, Subcommand}; #[derive(Debug, Parser)] struct Arguments { #[clap(subcommand)] command: Command, } #[derive(Debug, Subcommand)] enum Command { #[clap(about = "Analyse a file.")] Analyse, } fn main() { let arguments = Arguments::parse(); }

Commands: analyse Analyse a file.

#[derive(Debug, Subcommand)] enum Command { #[clap(about = "Analyse a file.")] Analyse(AnalyseCommand)} #[derive(Debug, Parser)] pub struct AnalyseCommand { #[clap(help = "The file to analyse.")] file: String, }
Newsletter

Get the latest Laravel/PHP jobs, events and curated articles straight to your inbox, once a week

Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Community Partners