#unique-id #id-generator #id #random #uuid #url

nano-id

A tiny, secure, URL-friendly, unique string ID generator for Rust

10 releases

0.4.0 Jun 2, 2024
0.3.3 Nov 19, 2023
0.3.2 Sep 15, 2023
0.3.1 Mar 28, 2023
0.1.1 Jun 17, 2021

#756 in Web programming

Download history 39/week @ 2024-04-01 10/week @ 2024-04-08 2/week @ 2024-04-15 5/week @ 2024-04-22 98/week @ 2024-04-29 84/week @ 2024-05-06 125/week @ 2024-05-13 293/week @ 2024-05-20 201/week @ 2024-05-27 346/week @ 2024-06-03 145/week @ 2024-06-10 160/week @ 2024-06-17 81/week @ 2024-06-24 84/week @ 2024-07-01 44/week @ 2024-07-08 88/week @ 2024-07-15

373 downloads per month
Used in 3 crates

MIT/Apache

8KB
100 lines

nano-id

A tiny, secure, URL-friendly, unique string ID generator for Rust

Inspired by nanoid

Features

  • Base58: ModueSymbhaswnPr123456789ABCDEFGHNRVfgctiUvzKqYTJkLxpZXjQW, (123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz)
  • Base62: ModuleSymbhasOwnPr0123456789ABCDEFGHNRVfgctiUvzKqYTJkLxpZXIjQW, (A-Za-z0-9)
  • Base64: ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW, (A-Za-z0-9_-)
  • Random: data by getrandom
  • Alphabet: custom with gen!(uid, 64, b"_-0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")

Installation

cargo add nano-id

Usage

nano_id::base64::<21>();

// Custom ALPHABET
nano_id::gen!(
    uid,
    64,
    b"_-0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
);

uid::<21>();

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~52–460KB