wasmer
wasmer copied to clipboard
🚀 The leading Wasm Runtime supporting WASIX, WASI and Emscripten
WAPM update checks (and our install script) were failing because `wasmer --version` was not working (we accidentally removed version on #3079 ) This PR brings it back
### Describe the bug While trying to create a wasm module in C, I noticed I get a crash when compiling a certain module. Specifically, with wasm 2.3.0 on the...
If the file given to `wasmer create-exe [file]` is a PiritaFile, the resulting exe will contain all compiled atoms and filesystems and run as a standalone binary. #### TODO -...
# Description # Review - [ ] Add a short description of the change to the CHANGELOG.md file
### Summary I was testing wasmer to run rust lib compiled to wasm. ### Additional details ```rust use std::path::PathBuf; use wasm_bindgen::prelude::wasm_bindgen; #[wasm_bindgen] pub fn use_block_storage() -> bool { true }...
Right now a command already exists (for creating the binary). We may need to copy/"adapt it" to create : `make build-wasmer-headless-minimal` (binary) -> `make build-capi-headless-static` . Goal: get into a...
PR #3057 changes the `Artifact` type to an enum in order to work with `staticlib`-like artifacts. This is not optimal since the two enum variants share most of their fields...