ClapCmd

A library to quickly build full-featured REPLs supported by CLAP and readline (provided via rustyline)

Features

Basic Example

A minimal example showing a basic REPL is as follows:

```rust use clapcmd::{ArgMatches, ClapCmd, ClapCmdResult, Command};

fn doping(: &mut ClapCmd, _: ArgMatches) -> ClapCmdResult { println!("pong"); Ok(()) }

fn main() { let mut cmd = ClapCmd::default(); cmd.command( doping, Command::new("ping").about("do a ping") ); cmd.runloop(); } ```

With State

To pass state or persistent information to callbacks, provide a State class like so. The State class must implement Clone and Default traits, and can be accessed via the get_state() and set_state() methods on the ClapCmd reference passed into the callback.

```rust use clapcmd::{ArgMatches, ClapCmd, ClapCmdResult, Command};

[derive(Clone, Default)]

struct State { counter: u32, }

fn docount(cmd: &mut ClapCmd, _: ArgMatches) -> ClapCmdResult where State: Clone + Default, { let state = cmd.getstate(); let newcount = state.counter + 1; println!("{}", newcount); cmd.setstate(State { counter: newcount }); Ok(()) }

fn main() { let mut cmd = ClapCmd::::default(); cmd.command( docount, Command::new("count").about("increment a counter") ); cmd.runloop(); } ```

Other Examples

Refer to the examples/ folder for more demonstrations of advanced use cases

MSRV

This library is tested with Rust 1.65 along with the latest version of Rust

Related Projects