combu

crates.io version license

combu is a customizable cli framework. The library name "combu" comes from command + 昆布(konbu, it means kelp in japanese).

combu has no dependencies(or depends on only std library). Crate.io's page is here.

combu(com + 昆布)は柔軟に CLI を組み上げられることを目標とした、カスタマイズ可能な CLI フレームワークです(一時クレートの名前が cmb だったこともありましたが、現在は combu です)。

Features

Documentation

Here

Installation to your project

Combu exists on crates.io. You can use(or import) this crate like other crate that exists on crates.io.

Edit cargo.toml manually

Add

toml combu="[version you want to use]"

to cargo.toml.

Use cargo-edit (Recommended)

If you installed cargo-edit, exec below command under the target project:

bash cargo add combu

Quick Start

```rust use combu::command::presets::func::{help, helptablizewithaliasdedup}; use combu::{actionresult, checkhelp, done, preset_root, Command}; use combu::{Context, Flag}; use std::env;

fn main() { let r = presetroot!(act) .usage(env!("CARGOPKGNAME").tostring() + " [args]") .commonflag( Flag::newbool("help") .shortalias('h') .description("show help"), ) .localflag( Flag::newbool("local") .shortalias('l') //.alias("test") .description("local flag"), ) .runfrom_args(env::args().collect()); }

fn act(cmd: Command, c: Context) -> actionresult!() // Or use combu::{ActionResult,ActionError} and Result { checkhelp!(cmd, c, helptablizewithaliasdedup); println!("Hello, combu - {:?}", c.args);

done!()
// Or use combu::Done and Ok(Done)

} ```

If you want to run quick start as example, exec

bash cargo run --example quick_start cargo run --example quick_start --help

More detail of quickstart: See quickstart.rs

Example

Single (command has flags, but not has subcommand)

Multi (Have Sub command)

Inspired

TODO(or Features to be implemented)

CONTRIBUTING

If you want to contribute combu, please read CONTRIBUTING.md for checking our code of conduct, and submitting pull requests to us.

Author(s?)

suquiya.

README Contribute: ksk001100 contributed on this pull request.

License

This is licensed under MIT LICENSE

Information about construct for this README.md

This readme is mainly based on seahorse's readme - Copyright (c) 2019 Keisuke Toyota - licensed MIT License.