inquire 0.5.3

inquire is a library for building interactive prompts on terminals
Documentation
#[macro_use]
pub(crate) mod prompt_common;

mod confirm;
mod custom_type;
#[cfg(feature = "date")]
mod dateselect;
#[cfg(feature = "editor")]
mod editor;
mod multiselect;
mod password;
mod select;
mod text;

pub use confirm::Confirm;
pub use custom_type::CustomType;
#[cfg(feature = "date")]
pub use dateselect::DateSelect;
#[cfg(feature = "editor")]
pub use editor::Editor;
pub use multiselect::MultiSelect;
pub use password::{Password, PasswordDisplayMode};
pub use select::Select;
pub use text::Text;