From ef2797838d7a7745378c964fba71219f192532ac Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 27 Sep 2025 23:04:44 +0100 Subject: [PATCH] Fix rustc warning It only appeared after I updated to Rust v1.90.0. --- src/game.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.rs b/src/game.rs index aac48daf..2fba71ca 100644 --- a/src/game.rs +++ b/src/game.rs @@ -140,7 +140,7 @@ impl From for esplugin::GameId { pub struct Game { base_type: GameType, install_path: PathBuf, - load_order: Box<(dyn WritableLoadOrder + Send + Sync + 'static)>, + load_order: Box, // Stored in an Arc> to support loading metadata in parallel with // loading plugins. database: Arc>,