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; } }