Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dasimmet/wabt
https://github.com/dasimmet/wabt
wabt wasm wasm2wat zig zig-package
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dasimmet/wabt
- Owner: dasimmet
- License: apache-2.0
- Created: 2024-12-22T18:03:06.000Z (14 days ago)
- Default Branch: main
- Last Pushed: 2024-12-22T20:17:07.000Z (13 days ago)
- Last Synced: 2024-12-22T20:23:03.554Z (13 days ago)
- Topics: wabt, wasm, wasm2wat, zig, zig-package
- Language: Zig
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [WebAssembly Binary Toolkit](https://github.com/WebAssembly/wabt.git) on the zig build system
this builds the [WebAssembly Binary Toolkit](https://github.com/WebAssembly/wabt.git) to
use on the [Zig](https://ziglang.org/) build system# add to your project
```bash
zig fetch --save git+https://github.com/dasimmet/wabt.git
```# build.zig usage
```zig
const wabt = @import("wabt");
const my_wat: LazyPath = wabt.wasm2wat(b.path("my.wasm"), "my.wat");
```