The `random_word` crate provides an efficient way to generate random
english words.
All words are compiled with the library.
This crate is optimized for lookup speed.
```rust
let word = random_word::gen();
```
```rust
let word = random_word::gen_starts_with('c');
assert!(word.is_some());
```
```rust
let word_list = random_word::all();
```