From 5be1d5fffe69ab7b036457904b7e6d3b31ba74d0 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Wed, 22 Jan 2025 14:11:59 +0100 Subject: [PATCH] feat(wasmparser): enable component-model `async` ABI Signed-off-by: Roman Volosatovs --- crates/wasmparser/src/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmparser/src/features.rs b/crates/wasmparser/src/features.rs index 53661b71be..c387361f32 100644 --- a/crates/wasmparser/src/features.rs +++ b/crates/wasmparser/src/features.rs @@ -230,7 +230,7 @@ define_wasm_features! { /// The WebAssembly [wide-arithmetic proposal](https://github.com/WebAssembly/wide-arithmetic). pub wide_arithmetic: WIDE_ARITHMETIC(1 << 28) = false; /// Support for component model async lift/lower ABI, as well as streams, futures, and errors. - pub component_model_async: COMPONENT_MODEL_ASYNC(1 << 29) = false; + pub component_model_async: COMPONENT_MODEL_ASYNC(1 << 29) = true; } }