This project is a simple command line tool to generate random passwords. The purpose of this is to learn Rust language basics.
git clone https://github.com/pitcer/rusty-password-generator
cd rusty-password-generator/
cargo build
cd target/debug
./rusty-password-generator 8 abcdefgh
First argument is password length, second, characters used to generate password.