https://github.com/byteshiva/wasi-rust-example
WASI RUST Project
https://github.com/byteshiva/wasi-rust-example
Last synced: 3 months ago
JSON representation
WASI RUST Project
- Host: GitHub
- URL: https://github.com/byteshiva/wasi-rust-example
- Owner: byteshiva
- License: apache-2.0
- Created: 2022-05-16T07:49:52.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-23T04:06:26.000Z (4 months ago)
- Last Synced: 2026-01-23T21:57:17.739Z (4 months ago)
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build rust project
```
docker build -t my-rust-app .
```
# Run rust project
```
docker run -it --rm my-rust-app /bin/bash
```
# Run wasi
```
wasmtime --dir . target/wasm32-wasi/release/wasi-rust-example.wasm sample-world!
```