seahorse

crates.io releases count issues count forks count license github actions CI

Logo

A minimal CLI framework written in Rust

Features

Documentation

Here

Usage

To use seahorse, add this to your Cargo.toml:

toml [dependencies] seahorse = "0.7.1"

Example

Run example

bash $ git clone https://github.com/ksk001100/seahorse $ cd seahorse $ cargo run --example single_app -- --help $ cargo run --example multiple_app -- --help

Quick Start

bash $ cargo new cli $ cd cli $ echo 'seahorse = "*"' >> Cargo.toml

```rust use seahorse::{App}; use std::env;

fn main() { let args: Vec = env::args().collect(); let app = App::new() .name(env!("CARGOPKGNAME")) .author(env!("CARGOPKGAUTHORS")) .version(env!("CARGOPKGVERSION")) .usage("cli [args]") .action(|c| println("Hello, {:?}", c.args));

    app.run(args);

} ```

bash $ cargo build --release $ ./target/release/cli --help $ ./target/release/cli John

Multiple command application

```rust use seahorse::{App, Context, Command, Flag, FlagType}; use std::env;

fn main() { let args: Vec = env::args().collect(); let app = App::new() .name(env!("CARGOPKGNAME")) .author(env!("CARGOPKGAUTHORS")) .version(env!("CARGOPKGVERSION")) .usage("cli [name]") .action(defaultaction) .command(addcommand()) .command(sub_command());

app.run(args);

}

fn default_action(c: &Context) { println!("Hello, {:?}", c.args); }

fn add_action(c: &Context) { let sum: i32 = c.args.iter().map(|n| n.parse::().unwrap()).sum(); println!("{}", sum); }

fn addcommand() -> Command { Command::new() .name("add") .usage("cli add [nums...]") .action(addaction) }

fn sub_action(c: &Context) { let sum: i32 = c.args.iter().map(|n| n.parse::().unwrap() * -1).sum(); println!("{}", sum); }

fn subcommand() -> Command { Command::new() .name("sub") .usage("cli sub [nums...]") .action(subaction) } ```

```bash $ cli John Hello, ["John"]

$ cli add 32 10 43 85

$ cli sub 12 23 89 -124 ```

Branch processing by flag

```rust use seahorse::{App, Command, Context, Flag, FlagType}; use std::env;

fn main() { let args: Vec = env::args().collect(); let app = App::new() .name(env!("CARGOPKGNAME")) .author(env!("CARGOPKGAUTHORS")) .version(env!("CARGOPKGVERSION")) .usage("cli [name]") .action(defaultaction) .flag(Flag::new("bye", "cli [name] --bye(-b)", FlagType::Bool).alias("b")) .flag(Flag::new("age", "cli [name] --age(-a)", FlagType::Int).alias("a")) .command(calccommand());

app.run(args);

}

fn defaultaction(c: &Context) { if c.boolflag("bye") { println!("Bye, {:?}", c.args); } else { println!("Hello, {:?}", c.args); }

if let Some(age) = c.int_flag("age") {
    println!("{:?} is {} years old", c.args, age);
}

}

fn calcaction(c: &Context) { match c.stringflag("operator") { Some(op) => { let sum: i32 = match &*op { "add" => c.args.iter().map(|n| n.parse::().unwrap()).sum(), "sub" => c.args.iter().map(|n| n.parse::().unwrap() * -1).sum(), _ => panic!("undefined operator..."), };

        println!("{}", sum);
    }
    None => panic!(),
}

}

fn calccommand() -> Command { Command::new() .name("calc") .usage("cli calc [nums...]") .action(calcaction) .flag( Flag::new( "operator", "cli calc [nums...] --operator(-op) [add | sub]", FlagType::String, ) .alias("op"), ) } ```

```bash $ cli John Hello, ["John"]

$ cli John --bye Bye, ["John"]

$ cli John --age 10 Hello, ["John"] ["John"] is 10 years old

$ cli John -b -a=40 Bye, ["John"] ["John"] is 40 years old

$ cli calc --operator add 1 2 3 4 5 15

$ cli calc -op sub 10 6 3 2 -21 ```

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under MIT license

Code of Conduct

Contribution to the seahorse crate is organized under the terms of the Contributor Covenant, the maintainer of seahorse, @ksk001100, promises to intervene to uphold that code of conduct.