git: 235e28cb2d16 - main - games/veloren: add patch comment for 5e9ef674125a

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Thu, 25 Aug 2022 18:04:02 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=235e28cb2d166500c0fc67a27f8920949e8d49b6

commit 235e28cb2d166500c0fc67a27f8920949e8d49b6
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2022-08-25 17:59:09 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2022-08-25 18:03:23 +0000

    games/veloren: add patch comment for 5e9ef674125a
---
 games/veloren/files/patch-rust-1.63 | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/games/veloren/files/patch-rust-1.63 b/games/veloren/files/patch-rust-1.63
index 5050354349f1..f77655c45c5e 100644
--- a/games/veloren/files/patch-rust-1.63
+++ b/games/veloren/files/patch-rust-1.63
@@ -1,3 +1,29 @@
+error: expected one of `!` or `::`, found keyword `mod`
+   --> cargo-crates/packed_simd_2-0.3.7/src/lib.rs:347:7
+    |
+347 | crate mod llvm {
+    |       ^^^ expected one of `!` or `::`
+
+error[E0433]: failed to resolve: could not find `OnceCell` in `lazy`
+   --> voxygen/src/scene/terrain.rs:558:32
+    |
+558 |         let init = core::lazy::OnceCell::new();
+    |                                ^^^^^^^^ not found in `core::lazy`
+    |
+help: consider importing one of these items
+    |
+3   | use core::cell::OnceCell;
+    |
+3   | use std::cell::OnceCell;
+    |
+3   | use tokio::sync::OnceCell;
+    |
+help: if you import `OnceCell`, refer to it directly
+    |
+558 -         let init = core::lazy::OnceCell::new();
+558 +         let init = OnceCell::new();
+    |
+
 --- Cargo.lock.orig	2022-08-17 12:36:05 UTC
 +++ Cargo.lock
 @@ -4025,9 +4025,9 @@ name = "packed_simd_2"