wasmedge-bindgen
wasmedge-bindgen copied to clipboard
Let WebAssembly's exported function support more data types for its parameters and return values.
Seems like this repo is supoerceded by one in the monorepo but there is not communication about that in *this repo. close/archive it. Update the readme so it's clear. effective...
It would be nice to be able to customize the "allocate" export name. TinyGo for instance, generates a function called "malloc" instead of "allocate". Perhaps auto-detect, if "allocate" and/or "malloc"...
The [README](https://github.com/second-state/wasmedge-bindgen/tree/main/host/go) for go is in the older version. Due to the API changes, the README should be updated.
This PR is for https://github.com/WasmEdge/WasmEdge/issues/1981
I see examples of how to use this to call guest functions from the host, but how can this be used to call host functions from the guest?
wasmbindgen-sys is currently at 0.9.0 but only represented in the cargo.toml in the various crates as 0.7.0.
* WIP * https://github.com/second-state/wasmedge-bindgen/issues/1
I can see simple `fn` support (COOL!) but I didn't any mention or an example for `async` and also `nodejs` support or maybe `TODO`?
Hello all, As per my understanding, the `wasmedge-bindgen` makes it necessary to have an import object with functions `return_result`, `return_error` and then manually allocate memory according to data type by...