rusty-diceware

Commandline diceware, with or without dice, written in Rustlang.
git clone https://kaka.farm/~git/rusty-diceware
Log | Files | Refs | README | LICENSE

Cargo.toml (537B)


      1 [workspace]
      2 
      3 members = ["diceware_wordlists"]
      4 
      5 [package]
      6 name = "diceware"
      7 version = "0.5.8"
      8 authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"]
      9 license = "AGPL-3.0"
     10 repository = "https://gitlab.com/yuvallanger/rusty-diceware"
     11 description = "A command line diceware, with or without dice."
     12 keywords = ["diceware", "password", "passphrase", "generator"]
     13 readme = "README.md"
     14 edition = "2021"
     15 
     16 
     17 [dependencies]
     18 getopts = "^0.2"
     19 rand = "^0.8"
     20 rand_chacha = "^0.3"
     21 diceware_wordlists = { path = "diceware_wordlists", version = "^1" }