random_word 0.1.0

Simple functions for generating random english words
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# random_word


The `random_word` crate provides a simple way to generate random 
english words.

The `random_word::Words` associated functions are asynchronous.

## Generating a random word


```rust
use random_word::Words;
let word = Words::random().await;
```