wasmtime-dotnet
wasmtime-dotnet copied to clipboard
.NET embedding of Wasmtime https://bytecodealliance.github.io/wasmtime-dotnet/
Added the ability to optionally override the encoding on string operations from Memory.
I am experiencing this error when trying to build my docker image that uses wasmtime. ``` Unhandled exception. System.DllNotFoundException: Unable to load shared library 'wasmtime' or one of its dependencies....
The memory layout of WASM strings compiled with AssemblyScript is in UTF16 format, while the memory.readstring functions are all hard coded to UTF8. https://github.com/AssemblyScript/assemblyscript/issues/1653 Providing an optional override for this...
I wanted to raise awareness in this repository about the [proposal for Wasmtime to become 1.0](https://github.com/bytecodealliance/rfcs/pull/14#issuecomment-915589031). If others are watching just this repository and are interested to learn what 1.0...
Hi, I would like to use wasmtime in an VSTO C# office addin project. However, I have trouble installing wasmtime as the prerequisites do not match. wasmtime requires .NetStandard 2.1....
Right now if a host function throws a .NET exception, the exception is caught and translated to a trap representation. The trap representation only keeps the exception message. When the...
Hi, In order to use this inside Unity, I've 'ported' the system to NetStandard2.0. It was a fairly quick port, but didn't modify too much of the code. I would...
I have asked that in the past most likely via an at-mention in https://github.com/christophwille/dotnet-opa-wasm/ - but today it came back up for multi-threaded usage of the Wasmtime API. I have...
Currently this runtime can execute Wasmtime one way, but there's no clear documentation how to pass CLR objects or return value types back to Wasmtime since execution engines like Wasmtime...
Tracking issue for me to update the release process documentation to: * Update the Wasmtime .NET package version bump in the script * Document where the version lives for the...