From f9fc1c6de1deb2bd362cfafb74149391e259f09d Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 26 Apr 2025 12:57:22 +0200 Subject: [PATCH] Executor should be clonable --- crates/lune-std-net/src/client/hyper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lune-std-net/src/client/hyper.rs b/crates/lune-std-net/src/client/hyper.rs index 5a46e94..9088f5a 100644 --- a/crates/lune-std-net/src/client/hyper.rs +++ b/crates/lune-std-net/src/client/hyper.rs @@ -15,7 +15,7 @@ use mlua_luau_scheduler::LuaSpawnExt; // Hyper executor that spawns futures onto our Lua scheduler -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct HyperExecutor { lua: Lua, }