summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-07-16 20:41:18 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-07-16 20:41:18 +0200
commitcd3d91c74730edf9925773577c6b8da99b51e4a7 (patch)
treefc0e66b76931e0604aca946f1d087da7b8866297 /crates
parentf1f272642ff50a1e94ff0ff6fec031973ca9eeda (diff)
chore: update wasmparser
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/parser/src/lib.rs2
2 files changed, 3 insertions, 1 deletions
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 7d66ea9..830e783 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -9,7 +9,7 @@ repository.workspace=true
rust-version.workspace=true
[dependencies]
-wasmparser={version="0.213", default-features=false, features=["validate"]}
+wasmparser={version="0.214", default-features=false, features=["validate"]}
log={workspace=true, optional=true}
tinywasm-types={version="0.8.0-alpha.0", path="../types", default-features=false}
diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs
index 40f5fe2..a517c52 100644
--- a/crates/parser/src/lib.rs
+++ b/crates/parser/src/lib.rs
@@ -76,6 +76,8 @@ impl Parser {
multi_memory: false, // should be working mostly
custom_page_sizes: false,
shared_everything_threads: false,
+ component_model_multiple_returns: false,
+ legacy_exceptions: false,
};
Validator::new_with_features(features.into())
}