A simple unscrambler program written in Rust
Go to file
Sayantan Santra 458d10e883 Updated LICENSE 2023-04-10 20:11:08 -05:00
src Improved formatting of output 2022-06-10 03:12:22 -05:00
.gitignore Initial commit 2022-06-06 23:54:37 -05:00
Cargo.lock Add compression to dictionary data 2022-06-07 19:38:30 -05:00
Cargo.toml Added build.rs to generate dict files 2022-06-07 23:52:32 -05:00
LICENSE Updated LICENSE 2023-04-10 20:11:08 -05:00
README.md Update README.md 2022-06-10 03:19:11 -05:00
build.rs Added build.rs to generate dict files 2022-06-07 23:52:32 -05:00

README.md

Unscrambler written in Rust

I'm learning Rust, so this is just a rewrite of a simple old project into Rust.

Link to old C++ project.

Usage

Simply download the unscrambler binary from the latest release and run it. The interface is self-explanatory.

Note

The main src/wordlist was pulled from words_alpha.txt by dwyl.

In order to use a different wordlist.txt, place the file inside src/ and delete the *.xz files there. Then run cargo build or cargo build --release.