Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/laysakura/wasm-threads-multi-platforms-poc


https://github.com/laysakura/wasm-threads-multi-platforms-poc

Last synced: 17 days ago
JSON representation

Awesome Lists containing this project

README

        

## Building `.wasm` (`wasm32-wasi`)

Install [`cargo-wasi`](https://github.com/bytecodealliance/cargo-wasi) first.

```console
# debug build
cargo wasi build
ls target/wasm32-wasi/debug/*.wasm

# release build
cargo wasi build --release
ls target/wasm32-wasi/debug/*.wasm
```

### Testing

```console
cargo wasi test
```