wq

A simple cli tool for turning web assembly into json. This is meant to be used with other tools like jq

cargo install wq

Usage

```bash

basic print

wq test.wasm

write to file

wq test.wasm test.json

for pipe chaining

cat simplest.wasm | wq json "sections":[{"type":"Type","content":{"types":[{"type":"Function","content":{"inputs":[],"outputs":["I32"]}}]}},{"type":"Function","content":{"functiontypes":[0]}},{"type":"Memory","content":{"memories":[{"minpages":2,"maxpages":10}]}},{"type":"Export","content":{"exports":[{"type":"Function","content":{"name":"main","index":0}},{"type":"Memory","content":{"name":"memory","index":0}}]}},{"type":"Code","content":{"codeblocks":[{"locals":[],"code_expression":[{"op":"I32Const","params":42}]}]}}]} ```