From 736df952edf1ea83232eafcdb3297ae21f277fff Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Thu, 9 Jun 2022 07:14:47 +0000 Subject: [PATCH] Update Rust crate uuid to 1.1.1 (#138) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [uuid](https://togithub.com/uuid-rs/uuid) | dependencies | minor | `1.0.0` -> `1.1.1` | --- ### Release Notes
uuid-rs/uuid ### [`v1.1.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.1.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.1.0...1.1.1) #### What's Changed - Fix documentation typo by [@​nstinus](https://togithub.com/nstinus) in [https://github.com/uuid-rs/uuid/pull/603](https://togithub.com/uuid-rs/uuid/pull/603) - Prepare for 1.1.1 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/604](https://togithub.com/uuid-rs/uuid/pull/604) #### New Contributors - [@​nstinus](https://togithub.com/nstinus) made their first contribution in [https://github.com/uuid-rs/uuid/pull/603](https://togithub.com/uuid-rs/uuid/pull/603) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.1.0...1.1.1 ### [`v1.1.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.1.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.0.0...1.1.0) #### What's Changed - note that the Error display impl is public API by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/597](https://togithub.com/uuid-rs/uuid/pull/597) - Fixed documentation link by [@​Razican](https://togithub.com/Razican) in [https://github.com/uuid-rs/uuid/pull/600](https://togithub.com/uuid-rs/uuid/pull/600) - Add to_bytes_le method by [@​dfaust](https://togithub.com/dfaust) in [https://github.com/uuid-rs/uuid/pull/599](https://togithub.com/uuid-rs/uuid/pull/599) - Prepare for 1.1.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/602](https://togithub.com/uuid-rs/uuid/pull/602) #### New Contributors - [@​Razican](https://togithub.com/Razican) made their first contribution in [https://github.com/uuid-rs/uuid/pull/600](https://togithub.com/uuid-rs/uuid/pull/600) - [@​dfaust](https://togithub.com/dfaust) made their first contribution in [https://github.com/uuid-rs/uuid/pull/599](https://togithub.com/uuid-rs/uuid/pull/599) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.0.0...1.1.0
--- ### Configuration 📅 **Schedule**: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/stackabletech/secret-operator). --- Cargo.lock | 6 +++--- rust/operator-binary/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dee41095..eb806338 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1812,7 +1812,7 @@ dependencies = [ "tonic-build", "tonic-reflection", "tracing", - "uuid 1.0.0", + "uuid 1.1.1", ] [[package]] @@ -2339,9 +2339,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.0.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0" +checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238" dependencies = [ "getrandom", ] diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 303c82e4..b612a883 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -33,7 +33,7 @@ tracing = "0.1.35" # Need to keep this in sync with our patched h2 build h2 = "=0.3.13" -uuid = { version = "1.0.0", features = ["v4"] } +uuid = { version = "1.1.1", features = ["v4"] } [dev-dependencies] time = { version = "0.3.9", features = ["parsing"] }