Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/laysakura/wasm-threads-multi-platforms-poc
- Owner: laysakura
- Created: 2023-07-27T23:53:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-27T23:53:46.000Z (over 1 year ago)
- Last Synced: 2024-04-15T12:50:14.786Z (7 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```