Uuid Rs Uuid Versions Save

Generate and parse UUIDs.

1.8.0

2 months ago

⚠️ Potential Breakage ⚠️

A new impl AsRef<Uuid> for Uuid bound has been added, which can break inference on code like:

let b = uuid.as_ref();

You can fix these by explicitly typing the result of the conversion:

let b: &[u8] = uuid.as_ref();

or by calling as_bytes instead:

let b = uuid.as_bytes();

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0

1.7.0

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.6.1...1.7.0

1.6.1

5 months ago

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.6.0...1.6.1

1.6.0

5 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.0

1.5.0

7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0

1.4.1

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.4.0...1.4.1

1.4.0

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.3.4...1.4.0

1.3.4

11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.3.3...1.3.4

1.3.3

1 year ago

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.3.2...1.3.3

1.3.2

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.3.1...1.3.2