Skip to content

fix(deps): update rust crate uuid to v1.8.0

Panter User for API access requested to merge renovate/uuid-1.x into main

This MR contains the following updates:

Package Type Update Change
uuid dependencies minor 1.7.0 -> 1.8.0
uuid dependencies minor ^1.7.0 -> ^1.8.0

Release Notes

uuid-rs/uuid (uuid)

v1.8.0

Compare Source

️ 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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about these updates again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Merge request reports