From d7881991f1243fad48d2bba647dce455fe9c6d66 Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Mon, 12 Jun 2023 12:40:48 +0000 Subject: [PATCH] Update Rust crate once_cell to 1.18.0 (#1932) 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 | |---|---|---|---| | [once_cell](https://github.com/matklad/once_cell) | dependencies | minor | `1.17.1` -> `1.18.0` | --- ### Release Notes
matklad/once_cell ### [`v1.18.0`](https://github.com/matklad/once_cell/blob/HEAD/CHANGELOG.md#​1180) [Compare Source](https://github.com/matklad/once_cell/compare/v1.17.2...v1.18.0) - `MSRV` is updated to 1.60.0 to take advantage of `dep:` syntax for cargo features, removing "implementation details" from publicly visible surface. ### [`v1.17.2`](https://github.com/matklad/once_cell/blob/HEAD/CHANGELOG.md#​1172) [Compare Source](https://github.com/matklad/once_cell/compare/v1.17.1...v1.17.2) - Avoid unnecessary synchronization in `Lazy::{force,deref}_mut()`, [#​231](https://github.com/matklad/once_cell/pull/231).
--- ### 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/1932 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 42336981..6b0ff9c2 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -19,7 +19,7 @@ tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] } uuid = { version = "1.3.3", features = ["v4"] } warp = { version = "0.3.5", default-features = false, features = ["compression"] } structopt = "0.3.26" -once_cell = "1.17.1" +once_cell = "1.18.0" config = { path = "../crates/config/", features = [ "webserver" ]} load_save = { path = "../crates/load_save/" }