git: 254e632e91f3 - main - games/veloren-weekly: drop rust < 1.74 workaround after c926bbff4b17
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Dec 2023 22:26:16 UTC
The branch main has been updated by jbeich:
URL: https://cgit.FreeBSD.org/ports/commit/?id=254e632e91f3ce584f3713f6ecdeaf7dcc3b3fa4
commit 254e632e91f3ce584f3713f6ecdeaf7dcc3b3fa4
Author: Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-12-08 22:22:41 +0000
Commit: Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-12-08 22:24:38 +0000
games/veloren-weekly: drop rust < 1.74 workaround after c926bbff4b17
---
games/veloren-weekly/files/patch-rust-1.72 | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/games/veloren-weekly/files/patch-rust-1.72 b/games/veloren-weekly/files/patch-rust-1.72
deleted file mode 100644
index c8fc812a243d..000000000000
--- a/games/veloren-weekly/files/patch-rust-1.72
+++ /dev/null
@@ -1,19 +0,0 @@
-Drop after lang/rust >= 1.74 update
-
-error[E0658]: use of unstable library feature 'io_error_other'
- --> common/assets/src/tar_source.rs:147:42
- |
-147 | entry.path().map_err(io::Error::other)?.as_ref(),
- | ^^^^^^^^^^^^^^^^
- |
- = note: see issue #91946 <https://github.com/rust-lang/rust/issues/91946> for more information
- = help: add `#![feature(io_error_other)]` to the crate attributes to enable
-
---- common/assets/src/lib.rs.orig 2023-10-18 12:03:13 UTC
-+++ common/assets/src/lib.rs
-@@ -1,4 +1,5 @@
- //#![warn(clippy::pedantic)]
-+#![feature(io_error_other)]
- //! Load assets (images or voxel data) from files
-
- use dot_vox::DotVoxData;