cli-prompts 0.1.1

Interactive prompts for the command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Module for changing the appearence of the prompts.
//! Each prompt has its own set of styling attributes, which include text color, different
//! formatting as well as some prompt-specific styling

mod color;
mod formatting;
mod label_style;
mod prompts;

pub use color::Color;
pub use formatting::{Formatting, FormattingOption};
pub use label_style::LabelStyle;
pub use prompts::{
    confirmation::ConfirmationStyle,
    input::InputStyle,
    multiselection::MultiselectionStyle,
    selection::{self, SelectionStyle},
};