rusty-diceware

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1984dd65eb4e8f7d83bfb34e1a23f9fc629a3fd8
parent 59a4e898af840f372a16c4446a30448c40af8d8a
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Thu, 11 Jun 2015 21:14:35 +0300

fixing wordlist file location

Diffstat:
Msrc/main.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs @@ -4,7 +4,7 @@ use std::io::Read; use rand::Rng; fn main() { - let beale_contents = include_str!("../beale.wordlist.asc"); + let beale_contents = include_str!("../bin/wordlists/beale.wordlist.asc"); let v: Vec<_> = beale_contents.split('\n') .skip(2)