bytecodealliance / wasi-rs

Experimental WASI API bindings for Rust
Apache License 2.0
271 stars 48 forks source link

Generate Wasm binaries from Rust written with the 'wasi' crate? #70

Closed orangeC23 closed 1 year ago

orangeC23 commented 1 year ago

After compiling Rust code written with the wasi crate into WebAssembly (Wasm), can Wasm files generated this way be executed in Wasm runtimes that are not written in Rust?

devsnek commented 1 year ago

yes. you can learn more about webassembly here: https://developer.mozilla.org/en-US/docs/WebAssembly

orangeC23 commented 1 year ago

Thanks!