Karel Hrkal
Karel Hrkal
### Describe the bug Using the latest published version of `wai-bindgen-wasmer` which is [0.4.0](https://docs.rs/crate/wai-bindgen-wasmer/0.4.0), doesn't work correctly. Trying to pass a list of structs is a compile error. ### Steps...
### Motivation Using wai-bindgen is good, but when you want to have a single code base that runs both on desktop and on the web, you need to compile your...
Recently, I got an error when I was installing `cargo component` in GitHub actions. The error is: ``` error[E0061]: this method takes 1 argument but 0 arguments were supplied -->...
When I compile a rust wasi component with `cargo component build --release` and I run jco on the result with ``` jco transpile plugin-wasi/target/wasm32-wasi/release/plugin_wasi.wasm --instantiation -o out-dir/ ``` Then the...
**Backstory** I want to use WAI to create a plugin system, where I define the host protocol, implemented by the host, and the plugin protocol, implemented by the plugin. The...
Ok, the migration is almost ready. Running `cargo test` in the `crates/gen-wasmer` folder passes. I cannot run `cargo test` in the root folder, because of some error with Python. But...
**Scenario:** I want to use `wai_bindgen_wasmer` to create a Rust program that would import WASM plugins, and then run that program on a webpage. I unserstand that's what the `js`...
### Motivation Current requirements on the imported functions in the Import object (`'static + Send + Sync`, for example [here](https://github.com/wasmerio/wasmer/blob/master/lib/api/src/externals/function.rs#L193)) are quire restrictive. For example, you cannot use references in...
### Motivation Currently, when creating a new `Instance`, an `Imports` object must be passed and is "binded" to that instance for the entirety of the instance's life. This is limiting,...
From https://github.com/fatedier/frp ### Pull Request FRP is a reverse proxy that let's anyone connect to your local machine through a public server. I already had these examples laying around, so...