From 491116486f361ff4cba8cc16a15d42904a97a2cb Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Wed, 25 May 2022 12:59:58 +0200 Subject: [PATCH] Update Rust crate uuid to 1.1.0 (#1373) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.0.0` -> `1.1.0` | --- ### Release Notes
uuid-rs/uuid ### [`v1.1.0`](https://github.com/uuid-rs/uuid/releases/tag/1.1.0) [Compare Source](https://github.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://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/597 - Fixed documentation link by [@​Razican](https://github.com/Razican) in https://github.com/uuid-rs/uuid/pull/600 - Add to_bytes_le method by [@​dfaust](https://github.com/dfaust) in https://github.com/uuid-rs/uuid/pull/599 - Prepare for 1.1.0 release by [@​KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/602 #### New Contributors - [@​Razican](https://github.com/Razican) made their first contribution in https://github.com/uuid-rs/uuid/pull/600 - [@​dfaust](https://github.com/dfaust) made their first contribution in https://github.com/uuid-rs/uuid/pull/599 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.0.0...1.1.0
--- ### Configuration 📅 **Schedule**: 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 [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: cabr2-bot Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1373 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- webserver/Cargo.lock | 4 ++-- webserver/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/webserver/Cargo.lock b/webserver/Cargo.lock index 294af5c04..e0456a23c 100644 --- a/webserver/Cargo.lock +++ b/webserver/Cargo.lock @@ -1918,9 +1918,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uuid" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0" +checksum = "93bbc61e655a4833cf400d0d15bf3649313422fa7572886ad6dab16d79886365" dependencies = [ "getrandom", "serde", diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index 1748d9f6b..65b82f7f6 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -21,7 +21,7 @@ search = { path = "../crates/search/" } serde = { version = "1.0.137", features = ["derive"] } tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] } types = { path = "../crates/types/" } -uuid = { version = "1.0.0", features = ["serde", "v4"] } +uuid = { version = "1.1.0", features = ["serde", "v4"] } warp = "0.3.2" structopt = "0.3" once_cell = "1.12.0"