Compact, human-readable unique IDs — grain-sized, yet enough for a lifetime.
For a language agnostic specification of the grain-id format, see SPECS.md
use grain_id::GrainId;
let id = GrainId::random();
println!("{}", id); // e.g. "123abcd"Traditional identifier systems face challenges in distributed environments:
- Sequential numbers (like GitHub issue numbers) cause collisions in distributed systems
- UUIDs are too long and not human-friendly
- Short hashes (like Git commit hashes) lack standardization
grain-id bridges the gap between human readability and technical requirements.
Add this to your Cargo.toml:
[dependencies]
grain-id = "0.13.0"
# With optional features
grain-id = { version = "0.13.0", features = ["arbitrary", "serde", "rusqlite", "sea-orm", "prost", "redb", "schemars"] }This crate support no_std.
For no_std environment, you'll need to disable default features.
[dependencies]
grain-id = { version = "0.13.0", default-features = false }- Human-friendly: Easy to read, type, and communicate
- Collision-resistant: Sufficient entropy for personal distributed systems
- Compact: Shorter than UUIDs while maintaining uniqueness
- Type-safe: Rust implementation with strong typing
- Multiple integrations: Support for serde, rusqlite, sea-orm, and protobuf
arbitrary:arbitrary::Arbitrarysupport for fuzzing tests.serde: Serialization/deserialization supportrusqlite: SQLite database integrationsea-orm: SeaORM ORM integrationprost: Protocol Buffers supportredb:redbintegrationschemars: JSON Schema support
use grain_id::GrainId;
// Generate random grain-id
let grain_id = GrainId::random();
// e.g. `123abcd`
println!("'{}'", grain_id);
// Parse from string
let valid_id: GrainId = "012atvw".parse()?;
// When decoding from BASE32, ambiguous characters (1/l/I, 0/o, v/u) are treated as 1, 0 and v respectively, so they do not cause errors.
let also_valid_id: GrainId = "ol2atuw".parse()?;
assert_eq!(valid_id, also_valid_id);
// Convert to/from integer
let num: u64 = valid_id.into();
let id_from_int: GrainId = num.try_into()?;
assert_eq!(valid_id, id_from_int);
// Lossy conversion from oversized int is allowed.
let id_from_overflowed_int = GrainId::from_u64_lossy(GrainId::CAPACITY + num);
assert_eq!(valid_id, id_from_overflowed_int);Licensed under either of:
- Apache License, Version 2.0 (LICENSE-APACHE)
- MIT License (LICENSE-MIT)
at your option.