diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-12-28 17:45:24 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-12-28 17:45:24 +0100 |
| commit | 5797ee77faeeaed8eb54f2eb09dd4a07c3c01017 (patch) | |
| tree | 35443925bb40d610fffa5e6a8403e4dcf23dd55a /crates/parser | |
| parent | 76a65cc51e031e32cdbbad5a67283870b981d7c3 (diff) | |
chore: update deps
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser')
| -rw-r--r-- | crates/parser/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/parser/src/lib.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 02b7003..61224fd 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.221", default-features=false, features=["validate", "features", "simd"]} +wasmparser={version="0.222", default-features=false, features=["validate", "features", "simd"]} log={workspace=true, optional=true} tinywasm-types={version="0.9.0-alpha.0", path="../types", default-features=false} diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index 2222ffa..dcb05f0 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -81,6 +81,7 @@ impl Parser { shared_everything_threads: false, component_model_multiple_returns: false, legacy_exceptions: false, + component_model_async: false, }; Validator::new_with_features(features.into()) } |
