6 releases

0.3.1 Aug 2, 2025
0.3.0 Aug 2, 2025
0.2.1 Dec 9, 2024
0.1.1 Aug 8, 2023

#66 in Value formatting

Download history 23/week @ 2025-07-21 544/week @ 2025-07-28 980/week @ 2025-08-04 237/week @ 2025-08-11 224/week @ 2025-08-18 286/week @ 2025-08-25 422/week @ 2025-09-01 299/week @ 2025-09-08 282/week @ 2025-09-15 305/week @ 2025-09-22 136/week @ 2025-09-29 167/week @ 2025-10-06 298/week @ 2025-10-13 420/week @ 2025-10-20 202/week @ 2025-10-27 35/week @ 2025-11-03

1,013 downloads per month
Used in oma-topics

MIT license

485KB
10K SLoC

Latest Version Build status Supported platforms License



inquire is a library for building interactive prompts on terminals.

It provides several different prompts in order to interactively ask the user for information via the CLI. With inquire, you can use:

  • Text to get text input from the user, with built-in autocompletion support;
  • Editor* to get longer text inputs by opening a text editor for the user;
  • DateSelect* to get a date input from the user, selected via an interactive calendar;
  • Select to ask the user to select one option from a given list;
  • MultiSelect to ask the user to select an arbitrary number of options from a given list;
  • Confirm for simple yes/no confirmation prompts;
  • CustomType for text prompts that you would like to parse to a custom type, such as numbers or UUIDs;
  • Password for secretive text prompts.

Demo

Animated GIF making a demonstration of a questionnaire created with this library. You can replay this recording in your terminal with asciinema play command - asciinema play ../assets/expense_tracker.cast Source

Features

  • Cross-platform, supporting UNIX and Windows terminals (thanks to crossterm);
  • Several kinds of prompts to suit your needs;
  • Support for fine-grained configuration for each prompt type, allowing you to customize:
    • Default values;
    • Input validators and formatters;
    • Help messages;
    • Autocompletion for Text prompts;
    • Custom list filters for Select and MultiSelect prompts;
    • Custom parsers for Confirm and CustomType prompts;
    • Custom extensions for files created by Editor prompts;
    • and many others!

Usage

Put this line in your Cargo.toml, under [dependencies].

inquire = "0.7.5"

* This prompt type is gated under a feature flag, e.g.:

inquire = { version = "0.7.5", features = ["date", "editor"] }

Dependencies

~5–18MB
~218K SLoC