6 releases (3 breaking)

0.5.2 Jan 25, 2021
0.5.1 Jan 14, 2021
0.3.0 Dec 30, 2020
0.2.0 Dec 23, 2020
0.1.0 Jul 9, 2020

#561 in Command-line interface

Download history 4/week @ 2024-01-08 5/week @ 2024-02-05 23/week @ 2024-02-12 3/week @ 2024-02-19 25/week @ 2024-02-26 13/week @ 2024-03-04 16/week @ 2024-03-11 23/week @ 2024-03-18 10/week @ 2024-03-25 40/week @ 2024-04-01 7/week @ 2024-04-08 9/week @ 2024-04-15

70 downloads per month
Used in 6 crates (3 directly)

MIT license

27KB
493 lines

xcli-rs

A CLI implementation in Rust that is based on Rustyline.

Supported Platforms

  • Unix
  • Windows
    • cmd.exe
    • Powershell
  • MacOS (not tested yet)

Note:

  • " quoted argument is not supported
  • No prompt is shown when running on non-tty device. Need a simple tweak on Rustyline...

Example

use xcli::*;

let mut app = App::new("xCLI")
    .version("v0.1")
    .author("kingwel.xie@139.com");

app.add_subcommand(Command::new("qwert")
    .about("controls testing features")
    .usage("qwert")
    .action(|_app, _actions| -> XcliResult {
        println!("qwert tested");
        Ok(CmdExeCode::Ok)
    }));

app.run();

crates.io

You can use this package in your project by adding the following to your Cargo.toml:

[dependencies]
xcli = "0.5.1"

ChangeLog

  • 2020.12.31, v0.5.0 API changes.

    • Allow a user data to be registered into xCli APP, and it can be retrieved later by user specified CLI commands
    • Refactor xCliError to take more error types.
    • add_subcommand_with_userdata() for attaching userdata to CLI sub commands
    • example updated to reflect the new APIs
  • 2021.1.11, v0.5.1

    • Command alias: command can have a short name
      tree            : tree
      mode            : mode [vi|emacs]
      log, l          : log [off|error|warn|info|debug|trace]
      help, h         : help [command]
      exit            : exit
      version, v      : version
      

Dependencies

~4.5MB
~95K SLoC