Kai Mast

Results 95 comments of Kai Mast

I tried to set forced target to `wasm32-unknown-unknown` for a project and get the following panic: ``` thread 'main' panicked at 'activated_features for invalid package: features did not find PackageId...

I made a test repository [here](https://github.com/kaimast/wasm-compile-test). You should get something like this when compiling `simba-wasm` without any flags: ``` ~/dev/wasm-compile-test main ❯ cargo build --package=simba-wasm ⬢ thread 'main' panicked at...

Is there a rust bug associated with this? All the issues linked seem to be closed or archived.

@jgallagher let me know if you need help with this. I don't use this crate but would like to see winit to be upgraded to mio 0.7...

You're right. I don't think this is feasible without extensively changing mio-extra's API. Might be easier to just remove winit's dependency on mio-extra at this point.

Cool thanks. It feels like it might make more sense to have a thin c++ layer on top libbson though, instead of re-implementing everything in C++.

I think I have the same problem on GNOME as well.

I am interested in working on this. @bkolobara was there a specific thing that blocked you from implementing it or was the codebase just too complicated to get it to...

> I spent one year thinking about this problem, implementing different solutions and looking what others are doing. My conclusion would be that just running the current Wasmer implementation on...

As far as I understand, there is not pretty way to do this. You need to use some unsafe code (or at least a bunch of mutexes). The way I...