Cuids are "Collision-resistant ids optimized for horizontal scaling and binary search lookup performance."
This is a rust implementation of the CUID library, the original JavaScript implementation of which may be found here
```rust use cuid;
fn main() -> () { println!("{}", cuid.cuid()); println!("{}", cuid.slug()); } ```