4 releases

Uses old Rust 2015

0.2.2 May 8, 2018
0.2.1 Nov 9, 2017
0.2.0 Nov 5, 2017
0.1.0 Nov 2, 2017

#517 in Command-line interface

Download history 1519/week @ 2023-12-20 853/week @ 2023-12-27 1557/week @ 2024-01-03 918/week @ 2024-01-10 892/week @ 2024-01-17 812/week @ 2024-01-24 1077/week @ 2024-01-31 899/week @ 2024-02-07 1067/week @ 2024-02-14 1067/week @ 2024-02-21 986/week @ 2024-02-28 1062/week @ 2024-03-06 1268/week @ 2024-03-13 972/week @ 2024-03-20 920/week @ 2024-03-27 943/week @ 2024-04-03

4,316 downloads per month
Used in 24 crates

MIT license

30KB
495 lines

Question

Crates.io Crates.io license Coverage Status

Linux: Build status Windows: Build status

A Command Line Question Asker for Rust.

Ask a question, what more could you want?

Easy to use library for asking users questions when writing console/terminal applications.

Usage

Add question as a dependency in your Cargo.toml to use from crates.io:

[dependencies]
question = "0.2.2"

Then add extern crate question; to your crate root and run cargo build or cargo update && cargo build for your project. Detailed documentation for releases can be found on docs.rs and the bleeding edge docs for the latest GitLab repository version can be found on GitLab pages.

Example

extern crate question;
use question::{Answer, Question};

fn main() {
    let answer = Question::new("Continue?")
        .default(Answer::YES)
        .show_defaults()
        .confirm();

    if answer == Answer::YES {
        println!("Onward then!");
    } else {
        println!("Aborting...");
    }
}

Examples can also be ran directly:

$ cargo run --example yes_no_with_defaults
    Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs
     Running `target/debug/examples/yes_no_with_defaults`
Continue? (Y/n) why
Continue? (Y/n) y
Onward then!

See examples for more.

Contributing

The project is mirrored to GitHub, but all development is done on GitLab. Please use the GitLab issue tracker. Don't have a GitLab account? Just email incoming+starshell/question@gitlab.com and those emails automatically become issues (with the comments becoming the email conversation).

To contribute to Question, please see CONTRIBUTING.

License

Question is distributed under the terms of both the MIT license. If this does not suit your needs for some reason please feel free to contact me, or open an issue.

See LICENSE.

Dependencies

~0–1.1MB
~30K SLoC