requestty 0.6.3

An easy-to-use collection of interactive cli prompts
Documentation
1
2
3
4
5
6
7
fn main() {
    let question = requestty::Question::confirm("anonymous")
        .message("Do you want to remain anonymous?")
        .build();

    println!("{:#?}", requestty::prompt_one(question));
}