Releases: mplanchard/cuid-rust
Releases · mplanchard/cuid-rust
v1.0.1 - Consistent CUID Length
1.0.1 - 2020-10-01
Fixed
- Generated CUIDs now have a consistent length, aligning with the
reference implementation (#2, thanks @rasendubi!)
v1.0.0 - Support Stable Rust
1.0.0 - 2020-02-22
Added
- Support for stable Rust (2018 edition)
- The crate now includes a simple binary (
cuid
) that can be used to generate
CUIDs on the commandline
Changed
- The atomic counter is now an
Arc<Mutex<u32>>
rather than anAtomicUsize
.
This change was made to ensure that the counter could be fetched and
updated simultaneously without using the nightly-onlyfetch_update
- Updated dependencies
- Ensured documentation examples are run in the test suite