#id #xid #identifier #value #epoch

xid

Globally unique sortable id generator. A Rust port of https://github.com/rs/xid.

8 releases (stable)

1.1.1 Apr 23, 2024
1.0.3 Oct 14, 2022
1.0.2 Jul 5, 2022
1.0.1 Jun 24, 2022
0.1.1 Dec 13, 2020

#305 in Database interfaces

Download history 1280/week @ 2024-12-15 1097/week @ 2024-12-22 568/week @ 2024-12-29 976/week @ 2025-01-05 1165/week @ 2025-01-12 1288/week @ 2025-01-19 803/week @ 2025-01-26 904/week @ 2025-02-02 773/week @ 2025-02-09 1015/week @ 2025-02-16 896/week @ 2025-02-23 1177/week @ 2025-03-02 1196/week @ 2025-03-09 1432/week @ 2025-03-16 1140/week @ 2025-03-23 1220/week @ 2025-03-30

5,122 downloads per month
Used in 24 crates (12 directly)

MIT license

22KB
418 lines

xid

CI Crates.io API reference

Globally unique sortable id generator. A Rust port of https://github.com/rs/xid.

The binary representation is compatible with the Mongo DB 12-byte ObjectId. The value consists of:

  • a 4-byte timestamp value in seconds since the Unix epoch
  • a 3-byte value based on the machine identifier
  • a 2-byte value based on the process id
  • a 3-byte incrementing counter, initialized to a random value

The string representation is 20 bytes, using a base32 hex variant with characters [0-9a-v] to retain the sortable property of the id.

See the original xid project for more details.

Usage

println!("{}", xid::new()); //=> bva9lbqn1bt68k8mj62g

Examples

Dependencies

~0.6–7.5MB
~56K SLoC