This crate provides attribute macros for command-line argument parsing.
Just by adding an attribute #[cmd]
to a function, the function is converted to a command line program.
```rust use argopt::cmd;
fn main(host: String, port: u16) { // ... } ```
The output is:
```
$ cargo run
error: The following required arguments were not provided:
USAGE:
argopt-test
You can customize the behavior of arguments by annotating them with attributes.
```rust use argopt::cmd;
fn main( #[opt(short = "h", long = "host")] host: String, #[opt(short, long, default_value = "80")] port: u16, ) { // ... } ```
And you can add help messages by adding doccomments.
```rust use argopt::cmd;
/// Sample program
fn main( /// Host name #[opt(short = "h", long = "host")] host: String, /// Port number #[opt(short, long, default_value = "80")] port: u16, ) { // ... } ```
The output is:
``` argopt-test 0.1.0 Sample program
USAGE:
simple [OPTIONS] --host
FLAGS: --help Prints help information -V, --version Prints version information
OPTIONS:
-h, --host
You can use the same options as structopt.
You can create sub commands by adding the attribute #[subcmd]
to functions.
```rust use argopt::{subcmd, cmd_group}; use std::path::PathBuf;
fn add(
#[opt(short)]
interactive: bool,
#[opt(short)]
patch: bool,
files: Vec
fn commit(
#[opt(short)]
message: Option
fn main() {} ```
There is a feature that allows you to interact with the log crate and handle the verbosity level automatically.
```rust use argopt::cmd; use log::*;
fn main() { error!("This is error"); warn!("This is warn"); info!("This is info"); debug!("This is debug"); trace!("This is trace"); } ```
The output is:
``` $ cargo run This is error
$ cargo run -- -v This is error This is warn
$ cargo run -- -vv This is error This is warn This is info
$ cargo run -- -vvv This is error This is warn This is info This is debug
$ cargo run -- -vvvv This is error This is warn This is info This is debug This is trace ```
License: MIT