An open API service indexing awesome lists of open source software.

https://github.com/imp/nanoid-dictionary-rs

Set of dictionaries for nanoid (mirrored from gitlab)
https://github.com/imp/nanoid-dictionary-rs

Last synced: over 1 year ago
JSON representation

Set of dictionaries for nanoid (mirrored from gitlab)

Awesome Lists containing this project

README

          

# 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);
}
```