From 20842e49368ab483380413bca41cb0f12e035cc6 Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Sat, 11 Jun 2022 22:56:25 +0200 Subject: [PATCH] Update Rust crate uuid to 1.1.2 (#1403) 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 | patch | `1.1.1` -> `1.1.2` | --- ### Release Notes
uuid-rs/uuid ### [`v1.1.2`](https://github.com/uuid-rs/uuid/releases/tag/1.1.2) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.1.1...1.1.2) #### What's Changed - Fix some doc links by [@​mbrobbel](https://github.com/mbrobbel) in https://github.com/uuid-rs/uuid/pull/606 - Prepare for 1.1.2 release by [@​KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/607 #### New Contributors - [@​mbrobbel](https://github.com/mbrobbel) made their first contribution in https://github.com/uuid-rs/uuid/pull/606 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.1.1...1.1.2
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: cabr2-bot Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1403 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 bbf2ffd1d..640003e13 100644 --- a/webserver/Cargo.lock +++ b/webserver/Cargo.lock @@ -1964,9 +1964,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uuid" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238" +checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" dependencies = [ "getrandom", "serde", diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index 06c401e75..c511934c5 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.19.2", features = ["macros", "rt-multi-thread"] } types = { path = "../crates/types/" } -uuid = { version = "1.1.1", features = ["serde", "v4"] } +uuid = { version = "1.1.2", features = ["serde", "v4"] } warp = "0.3.2" structopt = "0.3.26" once_cell = "1.12.0"