1 unstable release

Uses old Rust 2015

0.1.0 Oct 6, 2016

#57 in #thin

Download history 28/week @ 2024-04-22 25/week @ 2024-04-29 16/week @ 2024-05-06 23/week @ 2024-05-13 20/week @ 2024-05-20 9/week @ 2024-05-27 26/week @ 2024-06-03 13/week @ 2024-06-10 15/week @ 2024-06-17 22/week @ 2024-06-24 17/week @ 2024-07-15 7/week @ 2024-07-22 23/week @ 2024-07-29 17/week @ 2024-08-05

64 downloads per month
Used in exercism_prep_tests

MIT license

4KB

clioptions

💲 A very thin wrapper for command line arguments in Rust.

Build Status Build status

Usage:
  • Add this to your Cargo.toml file.
[dependencies]
clioptions = { git = "https://github.com/stpettersens/clioptions.git" }
  • Implement your command line arguments.
extern crate clioptions;
use clioptions::CliOptions;

fn main() {
    let cli = CliOptions::new("program_name"); // "program_name" is the fallback for argv[0].
    let program = cli.get_program();
    let mut filename = String::new();
    if cli.get_num() > 1 {
        for (i, a) in cli.get_args().iter().enumerate() {
            match a.trim() {
                "-h" | "--help" => display_usage(&program, 0),
                "-v" | "--version" => display_version(),
                "-f" | "--file" => filename = cli.next_argument(i), 
                // next_argument(i) gets the argument after i.
                _ => continue,
            }
        }
    }
    if(!filename.is_empty()) {
        do_something_with_filename(&filename);
    }
}

No runtime deps