diff options
| author | Henry <mail@henrygressmann.de> | 2026-04-12 22:39:22 +0200 |
|---|---|---|
| committer | Henry <mail@henrygressmann.de> | 2026-04-12 22:52:22 +0200 |
| commit | c2061cf63b0c131632c07191af2f9f76d13e8a3e (patch) | |
| tree | 008470e0d399c3ebd5d40d7a6f6c6649e8d29203 /crates/parser/README.md | |
| parent | ea895eebe56c71b3a880766f7b48b815cb1cb83e (diff) | |
chore: cleanup
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/README.md')
| -rw-r--r-- | crates/parser/README.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/parser/README.md b/crates/parser/README.md index 104cd50..c7eef8d 100644 --- a/crates/parser/README.md +++ b/crates/parser/README.md @@ -1,7 +1,6 @@ # `tinywasm-parser` -This crate provides a parser that can parse WebAssembly modules into a TinyWasm module. -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. +This crate provides a compiler that can convert WebAssembly modules into a `tinywasm` modules. ## Features @@ -16,6 +15,6 @@ let bytes = include_bytes!("./file.wasm"); let parser = Parser::new(); let module = parser.parse_module_bytes(bytes).unwrap(); -let mudule = parser.parse_module_file("path/to/file.wasm").unwrap(); +let module = parser.parse_module_file("path/to/file.wasm").unwrap(); let module = parser.parse_module_stream(&mut stream).unwrap(); ``` |
