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 (509B)


      1 [package]
      2 name = "diceware_wordlists"
      3 version = "1.2.1"
      4 authors = ["Yuval Langer <yuvallangerontheroad@gmail.com>"]
      5 license = "MIT OR Apache-2.0"
      6 repository = "https://gitlab.com/yuvallanger/rusty-diceware"
      7 description = "Wordlists for the command line tool Rusty Diceware"
      8 keywords = ["diceware", "password", "passphrase", "generator", "wordlists"]
      9 edition = "2021"
     10 
     11 [dependencies]
     12 serde = { version = "1", optional = true, features = ["derive"], default-features = false }
     13 
     14 [features]
     15 serde = ["dep:serde"]