SCRU128: Sortable, Clock and Random number-based Unique identifier

Crates.io License

SCRU128 ID is yet another attempt to supersede [UUID] for the users who need decentralized, globally unique time-ordered identifiers. SCRU128 is inspired by [ULID] and [KSUID] and has the following features:

```rust // generate a new identifier object let x = scru128::new(); println!("{x}"); // e.g. "036Z951MHJIKZIK2GSL81GR7L" println!("{}", x.to_u128()); // as a 128-bit unsigned integer

// generate a textual representation directly println!("{}", scru128::new_string()); // e.g. "036Z951MHZX67T63MQ9XE6Q0J" ```

See [SCRU128 Specification] for details.

Crate features

Default features:

Optional features:

License

Licensed under the Apache License, Version 2.0.

See also