The Great Refactor Update
We have a transition guide for moving from
uuid 0.6.x
touuid 0.7.x
.
- Minimum rustc version bumped to 1.22 (#254)
Added
- Nil variant to
uuid::Version
(#181) - Add
uuid::Version
to prelude (#188) - Allow v3 & v5
Uuid
s to be constructed from bytes (#270) BytesError
for generalUuid
use when byte slices are involved (#284)
Changes
- Move namespace
Uuid
constants underuuid::Uuid
(#187) - Use uuid::UuidBytes` instead of [u8;16] (#263)
- uuid::Uuid::from_bytes() renamed to
uuid::Uuid::from_slice()
,uuid::Uuid::from_uuid_bytes()
renamed touuid::Uuid::from_bytes()
(#299) Uuid
prefix removed from structs, enums and functions (#294)
Removed
Dependencies
- Rand to
0.5
(#262)
2018 edition is available. To enable it, use the 2018
branch.