17 releases

Uses old Rust 2015

0.6.5 Mar 2, 2018
0.6.3 Oct 10, 2017
0.5.6 Apr 24, 2017

#591 in Command-line interface

Download history 55/week @ 2023-10-22 115/week @ 2023-10-29 107/week @ 2023-11-05 141/week @ 2023-11-12 128/week @ 2023-11-19 206/week @ 2023-11-26 66/week @ 2023-12-03 96/week @ 2023-12-10 86/week @ 2023-12-17 100/week @ 2023-12-24 44/week @ 2023-12-31 168/week @ 2024-01-07 173/week @ 2024-01-14 226/week @ 2024-01-21 285/week @ 2024-01-28 235/week @ 2024-02-04

922 downloads per month
Used in neon-cli

MIT license

105KB
2.5K SLoC

Build status Latest version All downloads Downloads of latest version Documentation

app

A easy-to-use command-line-parser written for Rust.

Usage

Cargo.toml

    [dependencies]
    app = "0.6.5"

Or

    [dependencies]
    app = { git = "https://github.com/biluohc/app",branch = "master", version = "0.6.5" }

Documentation

Or

  • Run cargo doc --open after modified the toml file.

Examples

    git clone https://github.com/biluohc/app
  • fht2p: Options and Args
    cargo run --example fht2p -- -h
  • cp: Options and Multi Args
    cargo run --example cp
  • cpfn: Options, Multi Args and the help funcions.
    cargo run --example cpfn
  • zipcs: Sub_Commands, OptValue and OptValueParse
    cargo run --example zipcs
  • http: Option's order in help message
    cargo run --example http
    cargo run --example cargo-http

To Du

name status exapmle
Flag ls --help , cargo -V
Option http --port 8080 , rustc -o filename
Args rm Path1 Path2 Path3
SubCMD cargo run , cargo doc
Flags aggregation ls -a -l => ls -al
Multi Args cp SOURCE1 SOURCE2 SOUCE3 DEST
Optional for Option and Args
Dependencies and Conflicts between Options x

Dependencies

~1–1.3MB
~21K SLoC