cli_input 1.0.2

Various functions for gathering user input in the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# CLI Input

A crate filled with various functions and macros for collecting user input in the terminal.

# Examples:
```rust
use cli_input::prelude::*;

let name: String = input!("Name: ");
let password: String = input_hidden!("Password: ");

println!("\n==== Information ====");
println!("  Name: {}", name);
println!("  Password: {}", password);
```