prompt-input 0.3.0

A simple and lightweight library for user input prompts in Rust, designed to make input handling straightforward.
Documentation

prompt-input

A simple and lightweight Rust library for creating user input prompts. The library is designed to simplify input handling in CLI applications, providing a straightforward API to prompt users for input.

Installation

Add prompt-input to your Cargo.toml:

cargo add prompt-input

Usage

Here's a quick example of how to use prompt-input:

use prompt_input::prelude::*;

fn main() {
    let name: String = String::prompt("Enter your name: ");

    println!("Hello, {}!", name);
}

Why Use prompt-input?

  • Reduces boilerplate code for handling user input.
  • Encourages clean and readable CLI application code.
  • Easy to extend for other types in future versions.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests on the GitHub repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.