From b246580475b4d47e6f0d00bc0b5ac7d2ed2f552f Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Thu, 29 Jun 2023 13:06:47 +0000 Subject: [PATCH] Update Rust crate uuid to 1.4.0 (#1948) 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.3.4` -> `1.4.0` | --- ### Release Notes
uuid-rs/uuid (uuid) ### [`v1.4.0`](https://github.com/uuid-rs/uuid/releases/tag/1.4.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.3.4...1.4.0) #### What's Changed - Fixed wasm tests not running due to incorrect attribute target by [@​kmusick](https://github.com/kmusick) in https://github.com/uuid-rs/uuid/pull/688 - Fixing issue with Cloudflare Workers and wasm32-unknown-unknown when using now() by [@​kmusick](https://github.com/kmusick) in https://github.com/uuid-rs/uuid/pull/690 - Add `borsh` support by [@​grovesNL](https://github.com/grovesNL) in https://github.com/uuid-rs/uuid/pull/686 - Fix some timestamp generation by [@​KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/691 - Prepare for 1.4.0 release by [@​KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/692 #### New Contributors - [@​kmusick](https://github.com/kmusick) made their first contribution in https://github.com/uuid-rs/uuid/pull/688 - [@​grovesNL](https://github.com/grovesNL) made their first contribution in https://github.com/uuid-rs/uuid/pull/686 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.4...1.4.0
--- ### 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, check this box --- 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/1948 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- webserver/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index 8657f462..2ceaecdd 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -16,7 +16,7 @@ repository = "https://codeberg.org/Calciumdibromid/CaBr2" log = "0.4.19" serde = { version = "1.0.164", features = ["derive"] } tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread", "signal"] } -uuid = { version = "1.3.4", features = ["v4"] } +uuid = { version = "1.4.0", features = ["v4"] } warp = { version = "0.3.5", default-features = false, features = ["compression"] } structopt = "0.3.26" once_cell = "1.18.0"