Michael Bryan
Michael Bryan
Instead of doing your code generation as part of a `build.rs` script, you might want to consider moving it elsewhere so you don't impact build times. It's also generally considered...
This was implemented in https://github.com/wasmerio/wapm-cli/pull/262.
I was trying to debug a failing test at work and noticed there was no backtrace. I believe the reason the OP couldn't reproduce the issue is because it only...
This is waiting on https://github.com/wasmerio/wapm.io-backend/issues/240.
I've updated this to use the `wasmer/wabt` package from wapm.io on my computer, but it looks like I've lost write access to the repo. @syrusakbary can you add me to...
According to [msdn] the syntax looks like this: `return-type __stdcall function-name[(argument-list)]`. I just tried this out on my Arch Linux and while clang compiles a dummy program just fine, gcc...
That's quite a nice solution. I'm assuming those `#define`s will only be inserted if the corresponding calling convention is used? You may need some sort of lookup table which resolves...
@eqrion, do you have anything in mind for how to add support for calling conventions into `cbindgen`? I've worked with `syn` in the past, so wrapping my head around how...
I tried that too and it still compiles `backtrace-sys` regardless of whether I specify `default-features = false` and/or `features = []`. `error-chain` declares `backtrace` as an optional dependency which is...
I like the concept of "making illegal states unrepresentable". That way you can do things knowing that a particular assumption you make (e.g. all `Polygon`s are closed) will always be...