wasmer-java
wasmer-java copied to clipboard
☕ WebAssembly runtime for Java
### Summary I use the code like the tutorial , ` #[no_mangle] pub extern fn sum(x: i32, y: i32) -> i32 { x + y } ` and use: `cargo...
We should be able to pass imports to when instantiating a WebAssembly module, so the wasm code can call the host java functions and use their results.
### Summary Is it currently possible to access and write into the import memory of a wasm module? ### Additional details I would like to run a wasm module which...
Migrate to Maven Central for jar distribution, Jcenter and Bintray are being shut down by May 1 2021
Thanks for proposing a new feature! ### Motivation Existing jar distribution through jcenter bintray will be shutting down on May 1, 2021. This renders the current repository based distribution broken....
### Summary Heya, are there any plans on updating this any time soon? Since it's been quite a while now aha.
Imports
I just finished an implementation for the [Instance Imports feature](https://github.com/wasmerio/wasmer-java/issues/11) based on the work by @jcaesar
### Motivation I compiled a C library to wasm which contains the following import (in the .wat file) `(import "wasi-snapshot-preview1" "proc_exit" (func (;0;) (type 4)))` However, when I later use...
Since wasmer-runtime doesn't exist anymore in 2.0, I wonder what this should look like. Or maybe it's time to rewrite wasmer-java to more closely follow the new API introduced with...
### Describe the bug Invocation of a WASM binary triggers a segfault in the VM, crashing it. It seems that this occurs quite frequently on my laptop, but I'm seeing...
### Summary I try to run a wasm jni program in InteliJ on macOS , but I didn't make a success . ### Additional details Exception in thread "main" java.lang.UnsatisfiedLinkError:...