summaryrefslogtreecommitdiff
path: root/crates/parser/Cargo.toml
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-10-11 22:44:29 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-10-11 22:46:17 +0200
commit4c1f44a79d0e04fb33042c2eabc27040d260dfa5 (patch)
treefe259e1f47f9346d3d15c394424d9214c2e9d304 /crates/parser/Cargo.toml
parentc00031a82782393eb32a9143aedb61e902a7c5d0 (diff)
feat: add simd support to the parser
Diffstat (limited to 'crates/parser/Cargo.toml')
-rw-r--r--crates/parser/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index aa2f589..83bb32b 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -9,9 +9,9 @@ repository.workspace=true
rust-version.workspace=true
[dependencies]
-wasmparser={version="0.218", default-features=false, features=["validate", "features"]}
+wasmparser={version="0.219", default-features=false, features=["validate", "features"]}
log={workspace=true, optional=true}
-tinywasm-types={version="0.8.0-alpha.0", path="../types", default-features=false}
+tinywasm-types={version="0.9.0-alpha.0", path="../types", default-features=false}
[features]
default=["std", "logging"]