Robin Freyler

Results 352 comments of Robin Freyler
trafficstars

FYI: In case the `Linker` is too inefficient for the purposes of Soroban and the `LinkerBuilder` cannot be used, I just released Wasmi v0.36.0 with the new [`Instance::new`](https://docs.rs/wasmi/0.36.0/wasmi/struct.Instance.html#method.new) API similar...

@Ddystopia hey sorry, I forgot about this PR. Thanks for the spelling fix! :)

In order to understand you correctly: Do you mean to instead of storing an `ends: Vec` and `buffer: Vec` separately, you'd store a single raw-byte `data: Vec` that contains both,...

The current `StringBackend` is very simple indeed but in my honest opinion that's usually a good thing. Although, I agree that implementations should not be simple for the sake of...

@yagehu Thank you for reporting this issue! Wasmi uses Wasmtime's WASI implementation because it is a huge amount of work to re-implement WASI yourself. However, since then their WASI implementation...

You are welcome to experiment with integrating wasmtime-wasi into Wasmi. :)

I close this issue and put a link to it in https://github.com/wasmi-labs/wasmi/issues/943.

@turbolent Thanks a lot for the issue report! Since you already know what needs to be done (e.g. Wasmtime's solution), would you be willing to open a PR? :)

Hi @droundy and thank you very much for asking. Best would be someone who can be trusted as a co-maintainer, however, that "becoming trusted" to maintain with a high quality...

> I also have a few simple smoke tests but they use third-party std dependencies, so I decided to not bring them into wasmi. > > ```rust > #[cfg(test)] >...