diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-10-11 22:44:29 +0200 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-10-11 22:46:17 +0200 |
| commit | 4c1f44a79d0e04fb33042c2eabc27040d260dfa5 (patch) | |
| tree | fe259e1f47f9346d3d15c394424d9214c2e9d304 /crates/parser/src/lib.rs | |
| parent | c00031a82782393eb32a9143aedb61e902a7c5d0 (diff) | |
feat: add simd support to the parser
Diffstat (limited to 'crates/parser/src/lib.rs')
| -rw-r--r-- | crates/parser/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index e736576..2222ffa 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -61,10 +61,11 @@ impl Parser { function_references: true, tail_call: true, multi_memory: true, - memory64: false, simd: true, + memory64: true, custom_page_sizes: true, + wide_arithmetic: false, gc_types: true, stack_switching: false, component_model: false, |
