[package] name = "simple-diceware" version = "0.2.0" description = "Create diceware passwords from the command line" readme = "README.md" repository = "https://github.com/bchopson/simple-diceware-rs" homepage = "https://github.com/bchopson/simple-diceware-rs" license = "MIT" authors = ["Ben Chopson "] keywords = ["cli", "password", "diceware"] categories = ["command-line-utilities"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.3.24", features = ["derive"] } rand = "0.8.5" [[bin]] name = "diceware" path = "src/main.rs"