From 523676ee613fe88717ffdae0befe32a430b4cbf9 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 3 Mar 2025 16:13:36 +0100 Subject: [PATCH] feat(wasmtime-run): run components exporting `wasi:cli@0.3` Signed-off-by: Roman Volosatovs --- src/commands/run.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/run.rs b/src/commands/run.rs index 79c3d72721..e8fcd8e3ab 100644 --- a/src/commands/run.rs +++ b/src/commands/run.rs @@ -95,6 +95,7 @@ impl RunCommand { let mut config = self.run.common.config(None)?; config.async_support(true); + config.wasm_component_model_async(true); if self.run.common.wasm.timeout.is_some() { config.epoch_interruption(true);