Bastian Kersting

Results 51 comments of Bastian Kersting

I would like to help - if I can. I'm currently preparing for my bachelor thesis about virtualization with WASM in the embedded area, where I would kinda depend on...

Great thanks for the quick response! I am going to head over to the PR and have al look!

I agree, but to be fair, reaching no_std support is a fairly big step and a lot of work. Also maintaining it can be hard, as every dependency potentially breaks...

As far as I can tell the general idea is to compile nearly any rust std dependendant code. That wouldn't introduce a maintenance burden at wasmers.

Are there any plans on implementing this? I am asking because I am looking for `no_std` support in Wasmer which uses this crate for code generation. I could also try...

That wouldn't work apparently, as `no-std-compat` doesn't handle `std::io` (how should it in an environment where it's unclear if there even is a filesystem).

What exactly do you mean by working with Wasm? Right now you could compile the crate to Wasm using Emscripten's runtime: `cargo build --target wasm32-unknown-emscripten`. What you mean is probably...

Ups sorry! I think in order to get this started one could look at how [`reqwest`](https://github.com/seanmonstar/reqwest) (the http library used here) implemented Wasm support (mainly in `src/wasm` or `src/lib.rs`). We...

If looked further into this and [WASI](https://wasi.dev) could be an option as well. WASI provides sort of a normal standard library for WebAssembly and is both supported by the browser...

Yes, this is not yet implemented. There is no support for the WASM target yet.