#derive #proc-macro #macro-derive #dialoguer #prompt #dialog #yaga

macro yaga-derive

Derive macro based on Dialoguer crate. To use only with 'yaga'

1 unstable release

0.1.0 Nov 18, 2020

#8 in #dialoguer


Used in yaga

Custom license

7KB
144 lines

Yaga

It's simple wrapper trait over dialoguer crate. It's target is to remove necessity of providing explicit code when building interactive CLI apps. It comes with nifty derive macro, that turns (almost) any struct into command prompt configuration.

Usage

Add yaga to your Cargo.toml:

[dependencies]
yaga = "0.1.0" 

import trait to your namespace and derive it onto some struct:

use yaga::Dialogue;

#[derive(Dialogue)]
struct Config {
    #[dialogue(prompt = "An option")]
    an_option: String,
    #[dialogue(prompt = "Please input a number")]
    number: isize,
    #[dialogue(prompt = "Are you having a good day?")]
    is_day_good: bool,
}

and then all you need to do is compose your struct:

let config = Config::compose("Give me config... please!").unwrap();

Notes to end user

Project is pretty much WIP.

You have to add #[dialoguer] attribute to EACH field in your structs, and they must have prompt set.
Deriving Dialogue on enum requires that its variants have EXACTLY ONE UNNAMED field.
Support for some types is still missing (eg. PathBuf, UUID, Uri).
No configuration of CLI that is generated is provided.
API can change at any point (I'm not fully sure about trait method name).

Help will be much appreciated.

Dependencies

~1.5MB
~34K SLoC