/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "otpninja"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  [dependencies]
 7  rand = "0.8"          # For secure random number generation
 8  zeroize = "1.5"       # For securely erasing sensitive data from memory
 9  indicatif = "0.17"    # For progress bars
10  crossterm = "0.26"    # For terminal control (e.g., clearing the screen)
11  clap = "4.0"          # For command-line argument parsing