Felix Schütt
Felix Schütt
I wanted to give this as an idea, because it's a bit annoying with the current rustdoc: If I have a struct or an enum, I often want to know...
I have a GPX file, which has a malformed `` node: ```xml 2022-04-13T11:49:33.749 ``` The rest of the file is fine, but `gpx::read` fails because of that. Could there be...
Fixes #2972. Supersedes #3150.
# Review - [ ] Add a short description of the change to the CHANGELOG.md file
Issue: https://github.com/wasmerio/wasmer/issues/3127 # Description WIP PR after meeting with Syrus, test should technically not fail but it does. # Review - [ ] Add a short description of the change...
Fixes https://github.com/wasmerio/wasmer/issues/2334 Continuation of PR #3032. Adds a C-API for overwriting stdin / stdout / stderr and make them useable via pipes without depending on I/O or user input.
At some point we should probably add backpressure so that very large writes do not use up all the memory - for now lets not worry about it unless you...
It's better to print both the version and the git ref + date when the binary was built when printing `wasmer --version`
# Review - [ ] Add a short description of the change to the CHANGELOG.md file
In a lot of embedding cases (where I want to let wasmer run some code in a sandbox), I need to insert custom Rust types into JS / Python, then...