Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit a0368bc

Browse files
feat: switch to own fork of wasmparser
Signed-off-by: Henry Gressmann <[email protected]>
1 parent bf30b77 commit a0368bc

File tree

6 files changed

+197
-41
lines changed

6 files changed

+197
-41
lines changed

Cargo.lock

Lines changed: 105 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace=true
99

1010
[dependencies]
1111
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
12-
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
12+
wasmparser={version="0.200.2", package="tinywasm-wasmparser", default-features=false}
1313
log={version="0.4", optional=true}
1414
tinywasm-types={version="0.4.0", path="../types", default-features=false}
1515

crates/parser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# `tinywasm-parser`
22

3-
This crate provides a parser that can parse WebAssembly modules into a TinyWasm module. It is based on
4-
[`wasmparser_nostd`](https://crates.io/crates/wasmparser_nostd) and used by [`tinywasm`](https://crates.io/crates/tinywasm).
3+
This crate provides a parser that can parse WebAssembly modules into a TinyWasm module.
4+
It uses [my fork](https://crates.io/crates/tinywasm-wasmparser) of the [`wasmparser`](https://crates.io/crates/wasmparser) crate that has been modified to be compatible with `no_std` environments.
55

66
## Features
77

0 commit comments

Comments
 (0)