Skip to content

Commit

Permalink
Add memory64 feature to "wasm3" group (#1900)
Browse files Browse the repository at this point in the history
The wasm3 specification hasn't been published yet, but it looks like
this proposal has been merged, so add it in.
  • Loading branch information
alexcrichton authored Nov 12, 2024
1 parent c430ce5 commit 2997172
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/wasmparser/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ impl WasmFeatures {
.union(WasmFeatures::MULTI_MEMORY)
.union(WasmFeatures::RELAXED_SIMD)
.union(WasmFeatures::THREADS)
.union(WasmFeatures::EXCEPTIONS);
.union(WasmFeatures::EXCEPTIONS)
.union(WasmFeatures::MEMORY64);
}

#[cfg(feature = "features")]
Expand Down

0 comments on commit 2997172

Please sign in to comment.