Releases: nyris/shortguid-rs
Releases · nyris/shortguid-rs
0.7.0
To use shortguid/0.7.0 in your project, add:
[dependencies]
shortguid = "0.7.0"
Changes since 0.7.0
Added
- Added support for the
uuid
crate'sbytemuck
feature. - Added support for Borsh serialization via the
uuid
crate'sborsh
feature.
Changed
- Use the
uuid
crate's fast RNG by default.
0.6.0
To use shortguid/0.6.0 in your project, add:
[dependencies]
shortguid = "0.6.0"
Changes since 0.5.0
Added
- Added
ShortGuid::from_bytes_le
as a counterpart toto_bytes_le
.
0.5.0
To use shortguid/0.5.0 in your project, add:
[dependencies]
shortguid = "0.5.0"
Changes since 0.4.0
Added
- Added a
FromStr
implementation, allowing forparse::<ShortGuid>("...")
. - Added
from_slice
to construct from a&[u8]
. - Added support for Serde.
0.4.0
To use shortguid/0.4.0 in your project, add:
[dependencies]
shortguid = "0.4.0"
Changes since 0.3.0
Added
- Added more
PartialEq
implementations forString
and&&str
comparisons. - Added
Copy
,Ord
andPartialOrd
implementations forShortGuid
.