diceware-gen 0.2.1

This program generates random passphrases based on EFF's long wordlist.
docs.rs failed to build diceware-gen-0.2.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: diceware-gen-0.2.2

diceware-gen

[Crate Version] (https://crates.io/crates/diceware-gen)

This program generates random passphrases based on EFF's long wordlist.

usage

extern crate diceware_gen;
use diceware_gen::DicewareGen;

fn main() {
    let dice = DicewareGen::new().unwrap();
    for word in dice.gen(10) {
        println!("{}", word);
    }
}