nanoid-dictionary 0.4.3

Popular alphabets for use with nanoid
Documentation

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