dialoguer 0.6.0

A command line prompting library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate dialoguer;

use dialoguer::Editor;

fn main() {
    if let Some(rv) = Editor::new().edit("Enter a commit message").unwrap() {
        println!("Your message:");
        println!("{}", rv);
    } else {
        println!("Abort!");
    }
}