From a04b5fc565c709ff31ea0d5112671c779b81c5da Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Tue, 1 Nov 2022 11:13:26 +0100 Subject: [PATCH] Update Rust crate once_cell to 1.16.0 (#1615) 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.15.0` -> `1.16.0` | --- ### Release Notes
matklad/once_cell ### [`v1.16.0`](https://github.com/matklad/once_cell/blob/HEAD/CHANGELOG.md#​1160) [Compare Source](https://github.com/matklad/once_cell/compare/v1.15.0...v1.16.0) - Add `no_std` implementation based on `critical-section`, [#​195](https://github.com/matklad/once_cell/pull/195). - Deprecate `atomic-polyfill` feature (use the new `critical-section` instead)
--- ### 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/1615 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 1a0758e73..fce79db96 100644 --- a/webserver/Cargo.lock +++ b/webserver/Cargo.lock @@ -957,9 +957,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" [[package]] name = "openssl" diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index af22cbcaf..cbe1a8292 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -24,7 +24,7 @@ types = { path = "../crates/types/" } uuid = { version = "1.2.1", features = ["serde", "v4"] } warp = "0.3.3" structopt = "0.3.26" -once_cell = "1.15.0" +once_cell = "1.16.0" [features] portable = [ "config/portable" ]