PasswordGenerator 0.1.0

CLI password generator which uses argument parsing with clap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# RustPasswordGenerator


This is a simple CLI Password Generator App made in Rust which uses argument parsing via clap.

#### Options:

-l, --length <LENGTH>                  Length of the password  
-a, --all                              Include all possible characters  
-c, --lowercase letters                Lowercase letters include: abcdefghijklmnopqrstuvwxyz  
-u, --uppercase letters                Uppercase letters include: ABCDEFGHIJKLMNOPQRSTUVWXYZ  
-n, --numbers                          Numbers include: 0123456789  
-s, --special characters               Special characters include: !"#$%&'()*+,-./  
-z, --separator <SEPARATOR>            Separator between segments [default: -]  
-p, --segment-length <SEGMENT_LENGTH>  Length of each segment. 0 disabled the segment feature [default: 0]  
-h, --help                             Print help  
-V, --version                          Print version