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)
- Host: GitHub
- URL: https://github.com/imp/nanoid-dictionary-rs
- Owner: imp
- License: mit
- Created: 2021-07-04T10:15:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-24T08:52:24.000Z (over 4 years ago)
- Last Synced: 2025-01-21T17:24:40.156Z (over 1 year ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
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);
}
```