#uuid #guid #serialization #segment #generate #io #representation

ksuid

A library for efficiently generating, parsing and serializing Segment.io KSUIDs

2 unstable releases

Uses old Rust 2015

0.2.0 Jun 19, 2017
0.1.0 Jun 15, 2017

#26 in #guid

Download history 22/week @ 2023-11-30 17/week @ 2023-12-07 28/week @ 2023-12-14 28/week @ 2023-12-21 7/week @ 2023-12-28 18/week @ 2024-01-04 29/week @ 2024-01-11 25/week @ 2024-01-18 16/week @ 2024-01-25 17/week @ 2024-02-01 40/week @ 2024-02-08 43/week @ 2024-02-15 118/week @ 2024-02-22 69/week @ 2024-02-29 80/week @ 2024-03-07 27/week @ 2024-03-14

302 downloads per month
Used in 4 crates (3 directly)

MIT license

19KB
294 lines

Version Docs

Ksuid

KSUID stands for K-Sortable Unique IDentifier, a globally unique identifier used by Segment.

KSUIDs incorporate a timestamp with 1-second resolution, allowing them to be (roughly) sorted chronologically, as well as a 128-bit random payload in the style of UUIDv4. They can be serialized using a Base62 encoding for compatibility with environments which only support alphanumeric data. The lexicographic ordering of both the binary and string representations preserves the chronological ordering of the embedded timestamp.

See the canonical implementation for more information.

The author of this package is not affiliated with Segment.

This repository contains two separate crates, a library (ksuid) for generating, parsing and serializing KSUIDs and a simple CLI (ksuid-cli) which exposes a subset of this functionality for interactive use.

Benchmarks

The library includes some benchmarks to compare its performance against the canonical implementation. However, the benchmarks use rust's unstable test crate, so they are hidden behind a feature flag. Execute cargo bench --features bench with a nightly version of the compiler to run the benchmarks.

Dependencies

~1–1.4MB
~22K SLoC