diff --git a/inquire/src/lib.rs b/inquire/src/lib.rs index 667d3d3a..a932f237 100644 --- a/inquire/src/lib.rs +++ b/inquire/src/lib.rs @@ -12,6 +12,8 @@ //! - [`CustomType`] for text prompts that you would like to parse to a custom type, such as numbers or UUIDs; //! - [`Password`] for secretive text prompts. //! +//! \* The Editor and DateSelect prompts are available by enabling the `editor` and `date` features, respectively. +//! //! Check out the [GitHub repository](https://github.com/mikaelmello/inquire) to see demos of what you can do with `inquire`. //! //! # Features @@ -28,8 +30,6 @@ //! - Custom extensions for files created by [`Editor`] prompts; //! - and many others! //! -//! \* Date-related features are available by enabling the `date` feature. -//! //! # Simple Example //! //! ```rust no_run