nanoid-dictionary 0.4.3

Popular alphabets for use with nanoid
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# nanoid-dictionary

Popular alphabets for use with `nanoid::nanoid!()` macro

```
use nanoid_dictionary::NOLOOKALIKES;
use nanoid::nanoid;

fn main() {
    let id = nanoid!(21, NOLOOKALIKES);
    println!("{}", id);
}
```