Interactive CLI prompts in Rust
Create interactive input prompts like in GitHub's CLI tool.

Features
- Cross-platform;
- Only one dependency - crossterm;
- 4 prompts out of the box:
- Normal input field. Supports input validation and default values;
- Confirmation y/n;
- Selection from the list of options;
- Multiselection.
- Customization of the colors and text style of the prompts;
- Set of traits and helper structs that allows to implement custom prompts for your application;
Getting started
More elaborate examples can be found in the examples directory
use
License
This project, cli_prompts is licensed under the MIT License - see the LICENSE file for details.