A spellchecker written in rust.
```rust use spelling::spellcheck;
fn main() { let dictionarystring = includestr!("words.txt"); // newline separated spellcheck(dictionary_string, "restaraunt", 3); } ```
This uses the Levenshtein distance as the heuristic for distance.