From 8ff2453fc8236fe1ee6e1071bde958ba1e06824c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 26 Aug 2025 17:52:41 +0200 Subject: [PATCH] Flag `wasi:cli/run#run` as an async function I think this was lost in various translations here and there, but I'm under the impression that the intention is that this is should be `async`-by-default. --- wit-0.3.0-draft/run.wit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wit-0.3.0-draft/run.wit b/wit-0.3.0-draft/run.wit index 6149db7..906b6ae 100644 --- a/wit-0.3.0-draft/run.wit +++ b/wit-0.3.0-draft/run.wit @@ -2,5 +2,5 @@ interface run { /// Run the program. @since(version = 0.3.0-rc-2025-08-15) - run: func() -> result; + run: async func() -> result; }