cliclack 0.5.3

Beautiful, minimal, opinionated CLI prompts inspired by the Clack NPM package.
Documentation
use cliclack::{outro, select};

fn main() -> std::io::Result<()> {
    let selected = select("Select a word")
        .item("hello", "hello", "hi")
        .item("world", "world", "world")
        .item("how", "how", "how")
        .item("are", "are", "are")
        .item("you", "you", "you")
        .item(
            "hello how are YOU",
            "hello how are YOU",
            "hello how are YOU",
        )
        .filter_mode()
        .interact()?;

    let tools = cliclack::multiselect("Select additional tools")
        .initial_values(vec!["prettier", "eslint"])
        .item("prettier", "Prettier", "recommended")
        .item("eslint", "ESLint", "recommended")
        .item("stylelint", "Stylelint", "")
        .item("gh-action", "GitHub Action", "")
        .filter_mode()
        .interact()?;

    outro(format!("You chose: {selected}, then {}", tools.join(", ")))?;

    Ok(())
}